test
This commit is contained in:
parent
b5f60ff6dd
commit
8aa17cad1f
@ -0,0 +1,111 @@
|
||||
<?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\financial;
|
||||
|
||||
|
||||
use app\adminapi\controller\BaseAdminController;
|
||||
use app\adminapi\lists\financial\FinancialFeeApplicationLists;
|
||||
use app\adminapi\logic\financial\FinancialFeeApplicationLogic;
|
||||
use app\adminapi\validate\financial\FinancialFeeApplicationValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 财务管理--费用申请控制器
|
||||
* Class FinancialFeeApplicationController
|
||||
* @package app\adminapi\controller\financial
|
||||
*/
|
||||
class FinancialFeeApplicationsController extends BaseAdminController
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取财务管理--费用申请列表
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/03/27 14:53
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists(new FinancialFeeApplicationLists());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加财务管理--费用申请
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/03/27 14:53
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$params = (new FinancialFeeApplicationValidate())->post()->goCheck('add');
|
||||
$result = FinancialFeeApplicationLogic::add($params);
|
||||
if (true === $result) {
|
||||
return $this->success('添加成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(FinancialFeeApplicationLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑财务管理--费用申请
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/03/27 14:53
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$params = (new FinancialFeeApplicationValidate())->post()->goCheck('edit');
|
||||
$result = FinancialFeeApplicationLogic::edit($params);
|
||||
if (true === $result) {
|
||||
return $this->success('编辑成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(FinancialFeeApplicationLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除财务管理--费用申请
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/03/27 14:53
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$params = (new FinancialFeeApplicationValidate())->post()->goCheck('delete');
|
||||
$result = FinancialFeeApplicationLogic::delete($params);
|
||||
if (true === $result) {
|
||||
return $this->success('删除成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(FinancialFeeApplicationLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取财务管理--费用申请详情
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2024/03/27 14:53
|
||||
*/
|
||||
public function detail()
|
||||
{
|
||||
$params = (new FinancialFeeApplicationValidate())->goCheck('detail');
|
||||
$result = FinancialFeeApplicationLogic::detail($params);
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user