更新后端
This commit is contained in:
parent
662ac996e9
commit
6e3fd822d5
108
app/adminapi/controller/custom/CustomerDemandController.php
Normal file
108
app/adminapi/controller/custom/CustomerDemandController.php
Normal file
@ -0,0 +1,108 @@
|
||||
<?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\custom;
|
||||
|
||||
|
||||
use app\adminapi\controller\BaseAdminController;
|
||||
use app\adminapi\lists\custom\CustomerDemandLists;
|
||||
use app\adminapi\logic\custom\CustomerDemandLogic;
|
||||
use app\adminapi\validate\custom\CustomerDemandValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 客户需求控制器
|
||||
* Class CustomerDemandController
|
||||
* @package app\adminapi\controller\custom
|
||||
*/
|
||||
class CustomerDemandController extends BaseAdminController
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取客户需求列表
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists(new CustomerDemandLists());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加客户需求
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$params = (new CustomerDemandValidate())->post()->goCheck('add');
|
||||
$result = CustomerDemandLogic::add($params);
|
||||
if (true === $result) {
|
||||
return $this->success('添加成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(CustomerDemandLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑客户需求
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$params = (new CustomerDemandValidate())->post()->goCheck('edit');
|
||||
$result = CustomerDemandLogic::edit($params);
|
||||
if (true === $result) {
|
||||
return $this->success('编辑成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(CustomerDemandLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除客户需求
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$params = (new CustomerDemandValidate())->post()->goCheck('delete');
|
||||
CustomerDemandLogic::delete($params);
|
||||
return $this->success('删除成功', [], 1, 1);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取客户需求详情
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function detail()
|
||||
{
|
||||
$params = (new CustomerDemandValidate())->goCheck('detail');
|
||||
$result = CustomerDemandLogic::detail($params);
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,108 @@
|
||||
<?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\custom;
|
||||
|
||||
|
||||
use app\adminapi\controller\BaseAdminController;
|
||||
use app\adminapi\lists\custom\CustomerDemandSolutionLists;
|
||||
use app\adminapi\logic\custom\CustomerDemandSolutionLogic;
|
||||
use app\adminapi\validate\custom\CustomerDemandSolutionValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 解决方案控制器
|
||||
* Class CustomerDemandSolutionController
|
||||
* @package app\adminapi\controller\custom
|
||||
*/
|
||||
class CustomerDemandSolutionController extends BaseAdminController
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取解决方案列表
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists(new CustomerDemandSolutionLists());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加解决方案
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$params = (new CustomerDemandSolutionValidate())->post()->goCheck('add');
|
||||
$result = CustomerDemandSolutionLogic::add($params);
|
||||
if (true === $result) {
|
||||
return $this->success('添加成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(CustomerDemandSolutionLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑解决方案
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$params = (new CustomerDemandSolutionValidate())->post()->goCheck('edit');
|
||||
$result = CustomerDemandSolutionLogic::edit($params);
|
||||
if (true === $result) {
|
||||
return $this->success('编辑成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(CustomerDemandSolutionLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除解决方案
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$params = (new CustomerDemandSolutionValidate())->post()->goCheck('delete');
|
||||
CustomerDemandSolutionLogic::delete($params);
|
||||
return $this->success('删除成功', [], 1, 1);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取解决方案详情
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function detail()
|
||||
{
|
||||
$params = (new CustomerDemandSolutionValidate())->goCheck('detail');
|
||||
$result = CustomerDemandSolutionLogic::detail($params);
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
|
||||
}
|
108
app/adminapi/controller/project/CompetitorController.php
Normal file
108
app/adminapi/controller/project/CompetitorController.php
Normal file
@ -0,0 +1,108 @@
|
||||
<?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\project;
|
||||
|
||||
|
||||
use app\adminapi\controller\BaseAdminController;
|
||||
use app\adminapi\lists\project\CompetitorLists;
|
||||
use app\adminapi\logic\project\CompetitorLogic;
|
||||
use app\adminapi\validate\project\CompetitorValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 竞争对手控制器
|
||||
* Class CompetitorController
|
||||
* @package app\adminapi\controller\project
|
||||
*/
|
||||
class CompetitorController extends BaseAdminController
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取竞争对手列表
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists(new CompetitorLists());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加竞争对手
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$params = (new CompetitorValidate())->post()->goCheck('add');
|
||||
$result = CompetitorLogic::add($params);
|
||||
if (true === $result) {
|
||||
return $this->success('添加成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(CompetitorLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑竞争对手
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$params = (new CompetitorValidate())->post()->goCheck('edit');
|
||||
$result = CompetitorLogic::edit($params);
|
||||
if (true === $result) {
|
||||
return $this->success('编辑成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(CompetitorLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除竞争对手
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$params = (new CompetitorValidate())->post()->goCheck('delete');
|
||||
CompetitorLogic::delete($params);
|
||||
return $this->success('删除成功', [], 1, 1);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取竞争对手详情
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function detail()
|
||||
{
|
||||
$params = (new CompetitorValidate())->goCheck('detail');
|
||||
$result = CompetitorLogic::detail($params);
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
|
||||
}
|
108
app/adminapi/controller/project/ProjectEstimateController.php
Normal file
108
app/adminapi/controller/project/ProjectEstimateController.php
Normal file
@ -0,0 +1,108 @@
|
||||
<?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\project;
|
||||
|
||||
|
||||
use app\adminapi\controller\BaseAdminController;
|
||||
use app\adminapi\lists\project\ProjectEstimateLists;
|
||||
use app\adminapi\logic\project\ProjectEstimateLogic;
|
||||
use app\adminapi\validate\project\ProjectEstimateValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 项目概算控制器
|
||||
* Class ProjectEstimateController
|
||||
* @package app\adminapi\controller\project
|
||||
*/
|
||||
class ProjectEstimateController extends BaseAdminController
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取项目概算列表
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function lists()
|
||||
{
|
||||
return $this->dataLists(new ProjectEstimateLists());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加项目概算
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function add()
|
||||
{
|
||||
$params = (new ProjectEstimateValidate())->post()->goCheck('add');
|
||||
$result = ProjectEstimateLogic::add($params);
|
||||
if (true === $result) {
|
||||
return $this->success('添加成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(ProjectEstimateLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑项目概算
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function edit()
|
||||
{
|
||||
$params = (new ProjectEstimateValidate())->post()->goCheck('edit');
|
||||
$result = ProjectEstimateLogic::edit($params);
|
||||
if (true === $result) {
|
||||
return $this->success('编辑成功', [], 1, 1);
|
||||
}
|
||||
return $this->fail(ProjectEstimateLogic::getError());
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除项目概算
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function delete()
|
||||
{
|
||||
$params = (new ProjectEstimateValidate())->post()->goCheck('delete');
|
||||
ProjectEstimateLogic::delete($params);
|
||||
return $this->success('删除成功', [], 1, 1);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取项目概算详情
|
||||
* @return \think\response\Json
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function detail()
|
||||
{
|
||||
$params = (new ProjectEstimateValidate())->goCheck('detail');
|
||||
$result = ProjectEstimateLogic::detail($params);
|
||||
return $this->data($result);
|
||||
}
|
||||
|
||||
|
||||
}
|
77
app/adminapi/lists/custom/CustomerDemandLists.php
Normal file
77
app/adminapi/lists/custom/CustomerDemandLists.php
Normal file
@ -0,0 +1,77 @@
|
||||
<?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\lists\custom;
|
||||
|
||||
|
||||
use app\adminapi\lists\BaseAdminDataLists;
|
||||
use app\common\model\custom\CustomerDemand;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* 客户需求列表
|
||||
* Class CustomerDemandLists
|
||||
* @package app\adminapi\listscustom
|
||||
*/
|
||||
class CustomerDemandLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['org_id', 'department_id', 'project_id', 'theme', 'supplier', 'supplier_contacts', 'importance', 'recording_time', 'demand_content', 'annex'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取客户需求列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return CustomerDemand::where($this->searchWhere)
|
||||
->field(['id', 'org_id', 'department_id', 'project_id', 'theme', 'supplier', 'supplier_contacts', 'importance', 'recording_time', 'demand_content', 'annex'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取客户需求数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return CustomerDemand::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
77
app/adminapi/lists/custom/CustomerDemandSolutionLists.php
Normal file
77
app/adminapi/lists/custom/CustomerDemandSolutionLists.php
Normal file
@ -0,0 +1,77 @@
|
||||
<?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\lists\custom;
|
||||
|
||||
|
||||
use app\adminapi\lists\BaseAdminDataLists;
|
||||
use app\common\model\custom\CustomerDemandSolution;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* 解决方案列表
|
||||
* Class CustomerDemandSolutionLists
|
||||
* @package app\adminapi\listscustom
|
||||
*/
|
||||
class CustomerDemandSolutionLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['theme'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取解决方案列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return CustomerDemandSolution::where($this->searchWhere)
|
||||
->field(['id', 'org_id', 'department_id', 'project_id', 'customer_demand_id', 'theme', 'submission_time'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取解决方案数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return CustomerDemandSolution::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
77
app/adminapi/lists/project/CompetitorLists.php
Normal file
77
app/adminapi/lists/project/CompetitorLists.php
Normal file
@ -0,0 +1,77 @@
|
||||
<?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\lists\project;
|
||||
|
||||
|
||||
use app\adminapi\lists\BaseAdminDataLists;
|
||||
use app\common\model\project\Competitor;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* 竞争对手列表
|
||||
* Class CompetitorLists
|
||||
* @package app\adminapi\listsproject
|
||||
*/
|
||||
class CompetitorLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['project_id', 'competitor_name'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取竞争对手列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return Competitor::where($this->searchWhere)
|
||||
->field(['id', 'org_id', 'department_id', 'project_id', 'customer_demand_id', 'competitor_name', 'competitor_contacts', 'competitor_contacts_phone', 'competitive_power'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取竞争对手数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return Competitor::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
77
app/adminapi/lists/project/ProjectEstimateLists.php
Normal file
77
app/adminapi/lists/project/ProjectEstimateLists.php
Normal file
@ -0,0 +1,77 @@
|
||||
<?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\lists\project;
|
||||
|
||||
|
||||
use app\adminapi\lists\BaseAdminDataLists;
|
||||
use app\common\model\project\ProjectEstimate;
|
||||
use app\common\lists\ListsSearchInterface;
|
||||
|
||||
|
||||
/**
|
||||
* 项目概算列表
|
||||
* Class ProjectEstimateLists
|
||||
* @package app\adminapi\listsproject
|
||||
*/
|
||||
class ProjectEstimateLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 设置搜索条件
|
||||
* @return \string[][]
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function setSearch(): array
|
||||
{
|
||||
return [
|
||||
'=' => ['project_id'],
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取项目概算列表
|
||||
* @return array
|
||||
* @throws \think\db\exception\DataNotFoundException
|
||||
* @throws \think\db\exception\DbException
|
||||
* @throws \think\db\exception\ModelNotFoundException
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function lists(): array
|
||||
{
|
||||
return ProjectEstimate::where($this->searchWhere)
|
||||
->field(['id', 'org_id', 'department_id', 'project_id', 'customer_demand_id', 'estimate_source', 'create_user', 'quotation_date', 'invoice_type', 'technician', 'estimate_amount'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
->toArray();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取项目概算数量
|
||||
* @return int
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function count(): int
|
||||
{
|
||||
return ProjectEstimate::where($this->searchWhere)->count();
|
||||
}
|
||||
|
||||
}
|
124
app/adminapi/logic/custom/CustomerDemandLogic.php
Normal file
124
app/adminapi/logic/custom/CustomerDemandLogic.php
Normal file
@ -0,0 +1,124 @@
|
||||
<?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\logic\custom;
|
||||
|
||||
|
||||
use app\common\model\custom\CustomerDemand;
|
||||
use app\common\logic\BaseLogic;
|
||||
use think\facade\Db;
|
||||
|
||||
|
||||
/**
|
||||
* 客户需求逻辑
|
||||
* Class CustomerDemandLogic
|
||||
* @package app\adminapi\logic\custom
|
||||
*/
|
||||
class CustomerDemandLogic extends BaseLogic
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加客户需求
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public static function add(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
CustomerDemand::create([
|
||||
'org_id' => $params['org_id'],
|
||||
'department_id' => $params['department_id'],
|
||||
'project_id' => $params['project_id'],
|
||||
'theme' => $params['theme'],
|
||||
'supplier' => $params['supplier'],
|
||||
'supplier_contacts' => $params['supplier_contacts'],
|
||||
'importance' => $params['importance'],
|
||||
'recording_time' => strtotime($params['recording_time']),
|
||||
'demand_content' => $params['demand_content'],
|
||||
'annex' => $params['annex']
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑客户需求
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public static function edit(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
CustomerDemand::where('id', $params['id'])->update([
|
||||
'org_id' => $params['org_id'],
|
||||
'department_id' => $params['department_id'],
|
||||
'project_id' => $params['project_id'],
|
||||
'theme' => $params['theme'],
|
||||
'supplier' => $params['supplier'],
|
||||
'supplier_contacts' => $params['supplier_contacts'],
|
||||
'importance' => $params['importance'],
|
||||
'recording_time' => strtotime($params['recording_time']),
|
||||
'demand_content' => $params['demand_content'],
|
||||
'annex' => $params['annex']
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除客户需求
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public static function delete(array $params): bool
|
||||
{
|
||||
return CustomerDemand::destroy($params['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取客户需求详情
|
||||
* @param $params
|
||||
* @return array
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public static function detail($params): array
|
||||
{
|
||||
return CustomerDemand::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
}
|
122
app/adminapi/logic/custom/CustomerDemandSolutionLogic.php
Normal file
122
app/adminapi/logic/custom/CustomerDemandSolutionLogic.php
Normal file
@ -0,0 +1,122 @@
|
||||
<?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\logic\custom;
|
||||
|
||||
|
||||
use app\common\model\custom\CustomerDemandSolution;
|
||||
use app\common\logic\BaseLogic;
|
||||
use think\facade\Db;
|
||||
|
||||
|
||||
/**
|
||||
* 解决方案逻辑
|
||||
* Class CustomerDemandSolutionLogic
|
||||
* @package app\adminapi\logic\custom
|
||||
*/
|
||||
class CustomerDemandSolutionLogic extends BaseLogic
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加解决方案
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public static function add(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
CustomerDemandSolution::create([
|
||||
'org_id' => $params['org_id'],
|
||||
'department_id' => $params['department_id'],
|
||||
'project_id' => $params['project_id'],
|
||||
'customer_demand_id' => $params['customer_demand_id'],
|
||||
'theme' => $params['theme'],
|
||||
'submission_time' => strtotime($params['submission_time']),
|
||||
'solution_content' => $params['solution_content'],
|
||||
'customer_feedback' => $params['customer_feedback'],
|
||||
'annex' => $params['annex']
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑解决方案
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public static function edit(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
CustomerDemandSolution::where('id', $params['id'])->update([
|
||||
'org_id' => $params['org_id'],
|
||||
'department_id' => $params['department_id'],
|
||||
'project_id' => $params['project_id'],
|
||||
'customer_demand_id' => $params['customer_demand_id'],
|
||||
'theme' => $params['theme'],
|
||||
'submission_time' => strtotime($params['submission_time']),
|
||||
'solution_content' => $params['solution_content'],
|
||||
'customer_feedback' => $params['customer_feedback'],
|
||||
'annex' => $params['annex']
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除解决方案
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public static function delete(array $params): bool
|
||||
{
|
||||
return CustomerDemandSolution::destroy($params['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取解决方案详情
|
||||
* @param $params
|
||||
* @return array
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public static function detail($params): array
|
||||
{
|
||||
return CustomerDemandSolution::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
}
|
128
app/adminapi/logic/project/CompetitorLogic.php
Normal file
128
app/adminapi/logic/project/CompetitorLogic.php
Normal file
@ -0,0 +1,128 @@
|
||||
<?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\logic\project;
|
||||
|
||||
|
||||
use app\common\model\project\Competitor;
|
||||
use app\common\logic\BaseLogic;
|
||||
use think\facade\Db;
|
||||
|
||||
|
||||
/**
|
||||
* 竞争对手逻辑
|
||||
* Class CompetitorLogic
|
||||
* @package app\adminapi\logic\project
|
||||
*/
|
||||
class CompetitorLogic extends BaseLogic
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加竞争对手
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public static function add(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
Competitor::create([
|
||||
'org_id' => $params['org_id'],
|
||||
'department_id' => $params['department_id'],
|
||||
'project_id' => $params['project_id'],
|
||||
'customer_demand_id' => $params['customer_demand_id'],
|
||||
'competitor_name' => $params['competitor_name'],
|
||||
'competitor_contacts' => $params['competitor_contacts'],
|
||||
'competitor_contacts_phone' => $params['competitor_contacts_phone'],
|
||||
'competitive_power' => $params['competitive_power'],
|
||||
'competitor_advantages' => $params['competitor_advantages'],
|
||||
'competitor_disadvantages' => $params['competitor_disadvantages'],
|
||||
'remark' => $params['remark'],
|
||||
'annex' => $params['annex']
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑竞争对手
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public static function edit(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
Competitor::where('id', $params['id'])->update([
|
||||
'org_id' => $params['org_id'],
|
||||
'department_id' => $params['department_id'],
|
||||
'project_id' => $params['project_id'],
|
||||
'customer_demand_id' => $params['customer_demand_id'],
|
||||
'competitor_name' => $params['competitor_name'],
|
||||
'competitor_contacts' => $params['competitor_contacts'],
|
||||
'competitor_contacts_phone' => $params['competitor_contacts_phone'],
|
||||
'competitive_power' => $params['competitive_power'],
|
||||
'competitor_advantages' => $params['competitor_advantages'],
|
||||
'competitor_disadvantages' => $params['competitor_disadvantages'],
|
||||
'remark' => $params['remark'],
|
||||
'annex' => $params['annex']
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除竞争对手
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public static function delete(array $params): bool
|
||||
{
|
||||
return Competitor::destroy($params['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取竞争对手详情
|
||||
* @param $params
|
||||
* @return array
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public static function detail($params): array
|
||||
{
|
||||
return Competitor::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
}
|
128
app/adminapi/logic/project/ProjectEstimateLogic.php
Normal file
128
app/adminapi/logic/project/ProjectEstimateLogic.php
Normal file
@ -0,0 +1,128 @@
|
||||
<?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\logic\project;
|
||||
|
||||
|
||||
use app\common\model\project\ProjectEstimate;
|
||||
use app\common\logic\BaseLogic;
|
||||
use think\facade\Db;
|
||||
|
||||
|
||||
/**
|
||||
* 项目概算逻辑
|
||||
* Class ProjectEstimateLogic
|
||||
* @package app\adminapi\logic\project
|
||||
*/
|
||||
class ProjectEstimateLogic extends BaseLogic
|
||||
{
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加项目概算
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public static function add(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
ProjectEstimate::create([
|
||||
'org_id' => $params['org_id'],
|
||||
'department_id' => $params['department_id'],
|
||||
'project_id' => $params['project_id'],
|
||||
'customer_demand_id' => $params['customer_demand_id'],
|
||||
'estimate_source' => $params['estimate_source'],
|
||||
'create_user' => $params['create_user'],
|
||||
'quotation_date' => strtotime($params['quotation_date']),
|
||||
'invoice_type' => $params['invoice_type'],
|
||||
'technician' => $params['technician'],
|
||||
'estimate_amount' => $params['estimate_amount'],
|
||||
'ask' => $params['ask'],
|
||||
'annex' => $params['annex']
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑项目概算
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public static function edit(array $params): bool
|
||||
{
|
||||
Db::startTrans();
|
||||
try {
|
||||
ProjectEstimate::where('id', $params['id'])->update([
|
||||
'org_id' => $params['org_id'],
|
||||
'department_id' => $params['department_id'],
|
||||
'project_id' => $params['project_id'],
|
||||
'customer_demand_id' => $params['customer_demand_id'],
|
||||
'estimate_source' => $params['estimate_source'],
|
||||
'create_user' => $params['create_user'],
|
||||
'quotation_date' => strtotime($params['quotation_date']),
|
||||
'invoice_type' => $params['invoice_type'],
|
||||
'technician' => $params['technician'],
|
||||
'estimate_amount' => $params['estimate_amount'],
|
||||
'ask' => $params['ask'],
|
||||
'annex' => $params['annex']
|
||||
]);
|
||||
|
||||
Db::commit();
|
||||
return true;
|
||||
} catch (\Exception $e) {
|
||||
Db::rollback();
|
||||
self::setError($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除项目概算
|
||||
* @param array $params
|
||||
* @return bool
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public static function delete(array $params): bool
|
||||
{
|
||||
return ProjectEstimate::destroy($params['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 获取项目概算详情
|
||||
* @param $params
|
||||
* @return array
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public static function detail($params): array
|
||||
{
|
||||
return ProjectEstimate::findOrEmpty($params['id'])->toArray();
|
||||
}
|
||||
}
|
@ -0,0 +1,94 @@
|
||||
<?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\validate\custom;
|
||||
|
||||
|
||||
use app\common\validate\BaseValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 解决方案验证器
|
||||
* Class CustomerDemandSolutionValidate
|
||||
* @package app\adminapi\validate\custom
|
||||
*/
|
||||
class CustomerDemandSolutionValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加场景
|
||||
* @return CustomerDemandSolutionValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->remove('id', true);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑场景
|
||||
* @return CustomerDemandSolutionValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除场景
|
||||
* @return CustomerDemandSolutionValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function sceneDelete()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 详情场景
|
||||
* @return CustomerDemandSolutionValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:32
|
||||
*/
|
||||
public function sceneDetail()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
}
|
94
app/adminapi/validate/custom/CustomerDemandValidate.php
Normal file
94
app/adminapi/validate/custom/CustomerDemandValidate.php
Normal file
@ -0,0 +1,94 @@
|
||||
<?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\validate\custom;
|
||||
|
||||
|
||||
use app\common\validate\BaseValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 客户需求验证器
|
||||
* Class CustomerDemandValidate
|
||||
* @package app\adminapi\validate\custom
|
||||
*/
|
||||
class CustomerDemandValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加场景
|
||||
* @return CustomerDemandValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->remove('id', true);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑场景
|
||||
* @return CustomerDemandValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除场景
|
||||
* @return CustomerDemandValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function sceneDelete()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 详情场景
|
||||
* @return CustomerDemandValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:18
|
||||
*/
|
||||
public function sceneDetail()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
}
|
94
app/adminapi/validate/project/CompetitorValidate.php
Normal file
94
app/adminapi/validate/project/CompetitorValidate.php
Normal file
@ -0,0 +1,94 @@
|
||||
<?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\validate\project;
|
||||
|
||||
|
||||
use app\common\validate\BaseValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 竞争对手验证器
|
||||
* Class CompetitorValidate
|
||||
* @package app\adminapi\validate\project
|
||||
*/
|
||||
class CompetitorValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加场景
|
||||
* @return CompetitorValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->remove('id', true);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑场景
|
||||
* @return CompetitorValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除场景
|
||||
* @return CompetitorValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function sceneDelete()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 详情场景
|
||||
* @return CompetitorValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 22:01
|
||||
*/
|
||||
public function sceneDetail()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
}
|
94
app/adminapi/validate/project/ProjectEstimateValidate.php
Normal file
94
app/adminapi/validate/project/ProjectEstimateValidate.php
Normal file
@ -0,0 +1,94 @@
|
||||
<?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\validate\project;
|
||||
|
||||
|
||||
use app\common\validate\BaseValidate;
|
||||
|
||||
|
||||
/**
|
||||
* 项目概算验证器
|
||||
* Class ProjectEstimateValidate
|
||||
* @package app\adminapi\validate\project
|
||||
*/
|
||||
class ProjectEstimateValidate extends BaseValidate
|
||||
{
|
||||
|
||||
/**
|
||||
* 设置校验规则
|
||||
* @var string[]
|
||||
*/
|
||||
protected $rule = [
|
||||
'id' => 'require',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* 参数描述
|
||||
* @var string[]
|
||||
*/
|
||||
protected $field = [
|
||||
'id' => 'id',
|
||||
];
|
||||
|
||||
|
||||
/**
|
||||
* @notes 添加场景
|
||||
* @return ProjectEstimateValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function sceneAdd()
|
||||
{
|
||||
return $this->remove('id', true);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 编辑场景
|
||||
* @return ProjectEstimateValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function sceneEdit()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 删除场景
|
||||
* @return ProjectEstimateValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function sceneDelete()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @notes 详情场景
|
||||
* @return ProjectEstimateValidate
|
||||
* @author likeadmin
|
||||
* @date 2023/11/24 21:42
|
||||
*/
|
||||
public function sceneDetail()
|
||||
{
|
||||
return $this->only(['id']);
|
||||
}
|
||||
|
||||
}
|
34
app/common/model/custom/CustomerDemand.php
Normal file
34
app/common/model/custom/CustomerDemand.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?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\common\model\custom;
|
||||
|
||||
|
||||
use app\common\model\BaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
|
||||
/**
|
||||
* 客户需求模型
|
||||
* Class CustomerDemand
|
||||
* @package app\common\model\custom
|
||||
*/
|
||||
class CustomerDemand extends BaseModel
|
||||
{
|
||||
use SoftDelete;
|
||||
protected $name = 'customer_demand';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
|
||||
}
|
34
app/common/model/custom/CustomerDemandSolution.php
Normal file
34
app/common/model/custom/CustomerDemandSolution.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?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\common\model\custom;
|
||||
|
||||
|
||||
use app\common\model\BaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
|
||||
/**
|
||||
* 解决方案模型
|
||||
* Class CustomerDemandSolution
|
||||
* @package app\common\model\custom
|
||||
*/
|
||||
class CustomerDemandSolution extends BaseModel
|
||||
{
|
||||
use SoftDelete;
|
||||
protected $name = 'customer_demand_solution';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
|
||||
}
|
34
app/common/model/project/Competitor.php
Normal file
34
app/common/model/project/Competitor.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?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\common\model\project;
|
||||
|
||||
|
||||
use app\common\model\BaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
|
||||
/**
|
||||
* 竞争对手模型
|
||||
* Class Competitor
|
||||
* @package app\common\model\project
|
||||
*/
|
||||
class Competitor extends BaseModel
|
||||
{
|
||||
use SoftDelete;
|
||||
protected $name = 'competitor';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
|
||||
}
|
34
app/common/model/project/ProjectEstimate.php
Normal file
34
app/common/model/project/ProjectEstimate.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?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\common\model\project;
|
||||
|
||||
|
||||
use app\common\model\BaseModel;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
|
||||
/**
|
||||
* 项目概算模型
|
||||
* Class ProjectEstimate
|
||||
* @package app\common\model\project
|
||||
*/
|
||||
class ProjectEstimate extends BaseModel
|
||||
{
|
||||
use SoftDelete;
|
||||
protected $name = 'project_estimate';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user