This commit is contained in:
weiz 2024-02-28 09:10:20 +08:00
parent 8a377c9e7c
commit d502c146f0
15 changed files with 0 additions and 1354 deletions

View File

@ -1,108 +0,0 @@
<?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\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionAcceptProblemLists;
use app\adminapi\logic\supervision_work\SupervisionAcceptProblemLogic;
use app\adminapi\validate\supervision_work\SupervisionAcceptProblemValidate;
/**
* 工程监理--验收问题控制器
* Class SupervisionAcceptProblemController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionAcceptProblemController extends BaseAdminController
{
/**
* @notes 获取工程监理--验收问题列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function lists()
{
return $this->dataLists(new SupervisionAcceptProblemLists());
}
/**
* @notes 添加工程监理--验收问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function add()
{
$params = (new SupervisionAcceptProblemValidate())->post()->goCheck('add');
$result = SupervisionAcceptProblemLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionAcceptProblemLogic::getError());
}
/**
* @notes 编辑工程监理--验收问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function edit()
{
$params = (new SupervisionAcceptProblemValidate())->post()->goCheck('edit');
$result = SupervisionAcceptProblemLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionAcceptProblemLogic::getError());
}
/**
* @notes 删除工程监理--验收问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function delete()
{
$params = (new SupervisionAcceptProblemValidate())->post()->goCheck('delete');
SupervisionAcceptProblemLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--验收问题详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function detail()
{
$params = (new SupervisionAcceptProblemValidate())->goCheck('detail');
$result = SupervisionAcceptProblemLogic::detail($params);
return $this->data($result);
}
}

View File

@ -1,108 +0,0 @@
<?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\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionInspectionProblemLists;
use app\adminapi\logic\supervision_work\SupervisionInspectionProblemLogic;
use app\adminapi\validate\supervision_work\SupervisionInspectionProblemValidate;
/**
* 工程监理--巡视问题控制器
* Class SupervisionInspectionProblemController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionInspectionProblemController extends BaseAdminController
{
/**
* @notes 获取工程监理--巡视问题列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists()
{
return $this->dataLists(new SupervisionInspectionProblemLists());
}
/**
* @notes 添加工程监理--巡视问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function add()
{
$params = (new SupervisionInspectionProblemValidate())->post()->goCheck('add');
$result = SupervisionInspectionProblemLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionProblemLogic::getError());
}
/**
* @notes 编辑工程监理--巡视问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function edit()
{
$params = (new SupervisionInspectionProblemValidate())->post()->goCheck('edit');
$result = SupervisionInspectionProblemLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionInspectionProblemLogic::getError());
}
/**
* @notes 删除工程监理--巡视问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function delete()
{
$params = (new SupervisionInspectionProblemValidate())->post()->goCheck('delete');
SupervisionInspectionProblemLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--巡视问题详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function detail()
{
$params = (new SupervisionInspectionProblemValidate())->goCheck('detail');
$result = SupervisionInspectionProblemLogic::detail($params);
return $this->data($result);
}
}

View File

@ -1,108 +0,0 @@
<?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\supervision_work;
use app\adminapi\controller\BaseAdminController;
use app\adminapi\lists\supervision_work\SupervisionSideStationProblemLists;
use app\adminapi\logic\supervision_work\SupervisionSideStationProblemLogic;
use app\adminapi\validate\supervision_work\SupervisionSideStationProblemValidate;
/**
* 工程监理--旁站问题控制器
* Class SupervisionSideStationProblemController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionSideStationProblemController extends BaseAdminController
{
/**
* @notes 获取工程监理--旁站问题列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function lists()
{
return $this->dataLists(new SupervisionSideStationProblemLists());
}
/**
* @notes 添加工程监理--旁站问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function add()
{
$params = (new SupervisionSideStationProblemValidate())->post()->goCheck('add');
$result = SupervisionSideStationProblemLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionSideStationProblemLogic::getError());
}
/**
* @notes 编辑工程监理--旁站问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function edit()
{
$params = (new SupervisionSideStationProblemValidate())->post()->goCheck('edit');
$result = SupervisionSideStationProblemLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionSideStationProblemLogic::getError());
}
/**
* @notes 删除工程监理--旁站问题
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function delete()
{
$params = (new SupervisionSideStationProblemValidate())->post()->goCheck('delete');
SupervisionSideStationProblemLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取工程监理--旁站问题详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function detail()
{
$params = (new SupervisionSideStationProblemValidate())->goCheck('detail');
$result = SupervisionSideStationProblemLogic::detail($params);
return $this->data($result);
}
}

View File

@ -1,76 +0,0 @@
<?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\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_work\SupervisionAcceptProblem;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--验收问题列表
* Class SupervisionAcceptProblemLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionAcceptProblemLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function setSearch(): array
{
return [
'=' => ['accept_id'],
];
}
/**
* @notes 获取工程监理--验收问题列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function lists(): array
{
return SupervisionAcceptProblem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()
->toArray();
}
/**
* @notes 获取工程监理--验收问题数量
* @return int
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function count(): int
{
return SupervisionAcceptProblem::where($this->searchWhere)->count();
}
}

View File

@ -1,76 +0,0 @@
<?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\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--巡视问题列表
* Class SupervisionInspectionProblemLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionInspectionProblemLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function setSearch(): array
{
return [
'=' => ['inspection_id'],
];
}
/**
* @notes 获取工程监理--巡视问题列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function lists(): array
{
return SupervisionInspectionProblem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()
->toArray();
}
/**
* @notes 获取工程监理--巡视问题数量
* @return int
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function count(): int
{
return SupervisionInspectionProblem::where($this->searchWhere)->count();
}
}

View File

@ -1,76 +0,0 @@
<?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\supervision_work;
use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\supervision_work\SupervisionSideStationProblem;
use app\common\lists\ListsSearchInterface;
/**
* 工程监理--旁站问题列表
* Class SupervisionSideStationProblemLists
* @package app\adminapi\listssupervision_work
*/
class SupervisionSideStationProblemLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function setSearch(): array
{
return [
'=' => ['side_station_id'],
];
}
/**
* @notes 获取工程监理--旁站问题列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function lists(): array
{
return SupervisionSideStationProblem::withoutField('create_time,update_time,delete_time')->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()
->toArray();
}
/**
* @notes 获取工程监理--旁站问题数量
* @return int
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function count(): int
{
return SupervisionSideStationProblem::where($this->searchWhere)->count();
}
}

View File

@ -1,111 +0,0 @@
<?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\supervision_work;
use app\common\model\supervision_work\SupervisionAcceptProblem;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 工程监理--验收问题逻辑
* Class SupervisionAcceptProblemLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionAcceptProblemLogic extends BaseLogic
{
/**
* @notes 添加工程监理--验收问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 15:23
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SupervisionAcceptProblem::create([
'accept_id' => $params['accept_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['problem_name']
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑工程监理--验收问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 15:23
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionAcceptProblem::where('id', $params['id'])->update([
'accept_id' => $params['accept_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['problem_name'],
'update_time' =>time(),
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除工程监理--验收问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 15:23
*/
public static function delete(array $params): bool
{
return SupervisionAcceptProblem::destroy($params['id']);
}
/**
* @notes 获取工程监理--验收问题详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/27 15:23
*/
public static function detail($params): array
{
return SupervisionAcceptProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id'])->toArray();
}
}

View File

@ -1,112 +0,0 @@
<?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\supervision_work;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 工程监理--巡视问题逻辑
* Class SupervisionInspectionProblemLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionInspectionProblemLogic extends BaseLogic
{
/**
* @notes 添加工程监理--巡视问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SupervisionInspectionProblem::create([
'inspection_id' => $params['inspection_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['problem_name'],
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑工程监理--巡视问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionInspectionProblem::where('id', $params['id'])->update([
'inspection_id' => $params['inspection_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['problem_name'],
'update_time' => time(),
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除工程监理--巡视问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function delete(array $params): bool
{
return SupervisionInspectionProblem::destroy($params['id']);
}
/**
* @notes 获取工程监理--巡视问题详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/26 17:18
*/
public static function detail($params): array
{
$data = SupervisionInspectionProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id']);
return $data->toArray();
}
}

View File

@ -1,111 +0,0 @@
<?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\supervision_work;
use app\common\model\supervision_work\SupervisionSideStationProblem;
use app\common\logic\BaseLogic;
use think\facade\Db;
/**
* 工程监理--旁站问题逻辑
* Class SupervisionSideStationProblemLogic
* @package app\adminapi\logic\supervision_work
*/
class SupervisionSideStationProblemLogic extends BaseLogic
{
/**
* @notes 添加工程监理--旁站问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 13:58
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
SupervisionSideStationProblem::create([
'side_station_id' => $params['side_station_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['problem_name']
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 编辑工程监理--旁站问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 13:58
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
SupervisionSideStationProblem::where('id', $params['id'])->update([
'side_station_id' => $params['side_station_id'],
'problem_cate' => $params['problem_cate'],
'problem_description' => $params['problem_description'],
'problem_name' => $params['problem_name'],
'update_time' => time(),
]);
Db::commit();
return true;
} catch (\Exception $e) {
Db::rollback();
self::setError($e->getMessage());
return false;
}
}
/**
* @notes 删除工程监理--旁站问题
* @param array $params
* @return bool
* @author likeadmin
* @date 2024/02/27 13:58
*/
public static function delete(array $params): bool
{
return SupervisionSideStationProblem::destroy($params['id']);
}
/**
* @notes 获取工程监理--旁站问题详情
* @param $params
* @return array
* @author likeadmin
* @date 2024/02/27 13:58
*/
public static function detail($params): array
{
return SupervisionSideStationProblem::withoutField('create_time,update_time,delete_time')->findOrEmpty($params['id'])->toArray();
}
}

View File

@ -1,122 +0,0 @@
<?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\supervision_work;
use app\common\model\supervision_work\SupervisionAccept;
use app\common\model\supervision_work\SupervisionAcceptProblem;
use app\common\validate\BaseValidate;
/**
* 工程监理--验收问题验证器
* Class SupervisionAcceptProblemValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionAcceptProblemValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'accept_id' => 'require|checkAccept',
'problem_cate' => 'require',
'problem_description' => 'require',
'problem_name' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'accept_id' => '验收id',
'problem_cate' => '问题分类',
'problem_description' => '问题说明',
'problem_name' => '问题名称',
];
/**
* @notes 添加场景
* @return SupervisionAcceptProblemValidate
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function sceneAdd()
{
return $this->only(['accept_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 编辑场景
* @return SupervisionAcceptProblemValidate
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function sceneEdit()
{
return $this->only(['id','accept_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 删除场景
* @return SupervisionAcceptProblemValidate
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionAcceptProblemValidate
* @author likeadmin
* @date 2024/02/27 15:23
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionAcceptProblem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkAccept($value): bool|string
{
$data = SupervisionAccept::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '验收信息不存在';
}
return true;
}
}

View File

@ -1,122 +0,0 @@
<?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\supervision_work;
use app\common\model\supervision_work\SupervisionInspection;
use app\common\model\supervision_work\SupervisionInspectionProblem;
use app\common\validate\BaseValidate;
/**
* 工程监理--巡视问题验证器
* Class SupervisionInspectionProblemValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionInspectionProblemValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'inspection_id' => 'require|checkInspection',
'problem_cate' => 'require',
'problem_description' => 'require',
'problem_name' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'inspection_id' => '巡视id',
'problem_cate' => '问题分类',
'problem_description' => '问题说明',
'problem_name' => '问题名称',
];
/**
* @notes 添加场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneAdd()
{
return $this->only(['inspection_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 编辑场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneEdit()
{
return $this->only(['id','inspection_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 删除场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionInspectionProblemValidate
* @author likeadmin
* @date 2024/02/26 17:18
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionInspectionProblem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkInspection($value): bool|string
{
$data = SupervisionInspection::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '巡视信息不存在';
}
return true;
}
}

View File

@ -1,122 +0,0 @@
<?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\supervision_work;
use app\common\model\supervision_work\SupervisionSideStation;
use app\common\model\supervision_work\SupervisionSideStationProblem;
use app\common\validate\BaseValidate;
/**
* 工程监理--旁站问题验证器
* Class SupervisionSideStationProblemValidate
* @package app\adminapi\validate\supervision_work
*/
class SupervisionSideStationProblemValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require|checkData',
'side_station_id' => 'require|checkSideStation',
'problem_cate' => 'require',
'problem_description' => 'require',
'problem_name' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
'side_station_id' => '旁站id',
'problem_cate' => '问题分类',
'problem_description' => '问题说明',
'problem_name' => '问题名称',
];
/**
* @notes 添加场景
* @return SupervisionSideStationProblemValidate
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function sceneAdd()
{
return $this->only(['side_station_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 编辑场景
* @return SupervisionSideStationProblemValidate
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function sceneEdit()
{
return $this->only(['id','side_station_id','problem_cate','problem_description','problem_name']);
}
/**
* @notes 删除场景
* @return SupervisionSideStationProblemValidate
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return SupervisionSideStationProblemValidate
* @author likeadmin
* @date 2024/02/27 13:58
*/
public function sceneDetail()
{
return $this->only(['id']);
}
public function checkData($value): bool|string
{
$data = SupervisionSideStationProblem::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '数据不存在';
}
return true;
}
public function checkInspection($value): bool|string
{
$data = SupervisionSideStation::where('id',$value)->findOrEmpty();
if($data->isEmpty()){
return '旁站信息不存在';
}
return true;
}
}

View File

@ -1,34 +0,0 @@
<?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\supervision_work;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 工程监理--验收问题模型
* Class SupervisionAcceptProblem
* @package app\common\model\supervision_work
*/
class SupervisionAcceptProblem extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_accept_problem';
protected $deleteTime = 'delete_time';
}

View File

@ -1,34 +0,0 @@
<?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\supervision_work;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 工程监理--巡视问题模型
* Class SupervisionInspectionProblem
* @package app\common\model\supervision_work
*/
class SupervisionInspectionProblem extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_inspection_problem';
protected $deleteTime = 'delete_time';
}

View File

@ -1,34 +0,0 @@
<?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\supervision_work;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 工程监理--旁站问题模型
* Class SupervisionSideStationProblem
* @package app\common\model\supervision_work
*/
class SupervisionSideStationProblem extends BaseModel
{
use SoftDelete;
protected $name = 'supervision_side_station_problem';
protected $deleteTime = 'delete_time';
}