108 lines
3.2 KiB
PHP
108 lines
3.2 KiB
PHP
<?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\consult_target;
|
||
|
||
|
||
use app\adminapi\controller\BaseAdminController;
|
||
use app\adminapi\lists\consult_target\ConsultDemandLists;
|
||
use app\adminapi\logic\consult_target\ConsultDemandLogic;
|
||
use app\adminapi\validate\consult_target\ConsultDemandValidate;
|
||
|
||
|
||
/**
|
||
* 项目咨询--需求研究及管理控制器
|
||
* Class ConsultDemandController
|
||
* @package app\adminapi\controller\consult_target
|
||
*/
|
||
class ConsultDemandController extends BaseAdminController
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 获取项目咨询--需求研究及管理列表
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2024/03/11 14:36
|
||
*/
|
||
public function lists()
|
||
{
|
||
return $this->dataLists(new ConsultDemandLists());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 添加项目咨询--需求研究及管理
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2024/03/11 14:36
|
||
*/
|
||
public function add()
|
||
{
|
||
$params = (new ConsultDemandValidate())->post()->goCheck('add');
|
||
$result = ConsultDemandLogic::add($params);
|
||
if (true === $result) {
|
||
return $this->success('添加成功', [], 1, 1);
|
||
}
|
||
return $this->fail(ConsultDemandLogic::getError());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑项目咨询--需求研究及管理
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2024/03/11 14:36
|
||
*/
|
||
public function edit()
|
||
{
|
||
$params = (new ConsultDemandValidate())->post()->goCheck('edit');
|
||
$result = ConsultDemandLogic::edit($params);
|
||
if (true === $result) {
|
||
return $this->success('编辑成功', [], 1, 1);
|
||
}
|
||
return $this->fail(ConsultDemandLogic::getError());
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除项目咨询--需求研究及管理
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2024/03/11 14:36
|
||
*/
|
||
public function delete()
|
||
{
|
||
$params = (new ConsultDemandValidate())->post()->goCheck('delete');
|
||
ConsultDemandLogic::delete($params);
|
||
return $this->success('删除成功', [], 1, 1);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取项目咨询--需求研究及管理详情
|
||
* @return \think\response\Json
|
||
* @author likeadmin
|
||
* @date 2024/03/11 14:36
|
||
*/
|
||
public function detail()
|
||
{
|
||
$params = (new ConsultDemandValidate())->goCheck('detail');
|
||
$result = ConsultDemandLogic::detail($params);
|
||
return $this->data($result);
|
||
}
|
||
|
||
|
||
} |