This commit is contained in:
weiz 2024-02-04 13:58:53 +08:00
parent 37b79f5e2a
commit 54853749b4

View File

@ -1,21 +1,6 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\adminapi\controller\oa;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\oa\FlowApproveLists;
use app\adminapi\logic\oa\FlowApproveLogic;
@ -29,8 +14,7 @@ use app\adminapi\validate\oa\FlowApproveValidate;
*/
class FlowApproveController extends BaseAdminController
{
/**
* @notes 获取日常审批列表
* @return \think\response\Json
@ -43,7 +27,6 @@ class FlowApproveController extends BaseAdminController
return $this->dataLists(new FlowApproveLists($params['type']));
}
/**
* @notes 获取日常审批详情
* @return \think\response\Json
@ -77,5 +60,4 @@ class FlowApproveController extends BaseAdminController
return $this->fail(FlowApproveLogic::getError());
}
}