engineering/app/adminapi/controller/supervision_work/SupervisionMaterialParallelTestingDetailController.php
2024-02-29 17:16:49 +08:00

127 lines
4.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?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\SupervisionMaterialParallelTestingDetailLists;
use app\adminapi\logic\supervision_work\SupervisionMaterialParallelTestingDetailLogic;
use app\adminapi\validate\supervision_work\SupervisionMaterialParallelTestingDetailValidate;
/**
* 工程监理--材料平行检验明细控制器
* Class SupervisionMaterialParallelTestingDetailController
* @package app\adminapi\controller\supervision_work
*/
class SupervisionMaterialParallelTestingDetailController extends BaseAdminController
{
/**
* @notes 获取工程监理--材料平行检验明细列表
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/29 15:00
*/
public function lists()
{
return $this->dataLists(new SupervisionMaterialParallelTestingDetailLists());
}
/**
* @notes 添加工程监理--材料平行检验明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/29 15:00
*/
public function add()
{
$params = (new SupervisionMaterialParallelTestingDetailValidate())->post()->goCheck('add');
$result = SupervisionMaterialParallelTestingDetailLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(SupervisionMaterialParallelTestingDetailLogic::getError());
}
/**
* @notes 编辑工程监理--材料平行检验明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/29 15:00
*/
public function edit()
{
$params = (new SupervisionMaterialParallelTestingDetailValidate())->post()->goCheck('edit');
$result = SupervisionMaterialParallelTestingDetailLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(SupervisionMaterialParallelTestingDetailLogic::getError());
}
/**
* @notes 检验工程监理--见证取样明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/29 09:22
*/
public function check()
{
$params = (new SupervisionMaterialParallelTestingDetailValidate())->post()->goCheck('check');
$result = SupervisionMaterialParallelTestingDetailLogic::check($params,$this->adminId);
if (true === $result) {
return $this->success('检验成功', [], 1, 1);
}
return $this->fail(SupervisionMaterialParallelTestingDetailLogic::getError());
}
/**
* @notes 删除工程监理--材料平行检验明细
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/29 15:00
*/
public function delete()
{
$params = (new SupervisionMaterialParallelTestingDetailValidate())->post()->goCheck('delete');
$result = SupervisionMaterialParallelTestingDetailLogic::delete($params);
if (true === $result) {
return $this->success('删除成功', [], 1, 1);
}
return $this->fail(SupervisionMaterialParallelTestingDetailLogic::getError());
}
/**
* @notes 获取工程监理--材料平行检验明细详情
* @return \think\response\Json
* @author likeadmin
* @date 2024/02/29 15:00
*/
public function detail()
{
$params = (new SupervisionMaterialParallelTestingDetailValidate())->goCheck('detail');
$result = SupervisionMaterialParallelTestingDetailLogic::detail($params);
return $this->data($result);
}
}