dataLists(new SupervisionCheckItemLists()); } /** * @notes 添加工程监理--新增检查项 * @return \think\response\Json * @author likeadmin * @date 2024/02/26 15:34 */ public function add() { $params = (new SupervisionCheckItemValidate())->post()->goCheck('add'); $result = SupervisionCheckItemLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(SupervisionCheckItemLogic::getError()); } /** * @notes 编辑工程监理--新增检查项 * @return \think\response\Json * @author likeadmin * @date 2024/02/26 15:34 */ public function edit() { $params = (new SupervisionCheckItemValidate())->post()->goCheck('edit'); $result = SupervisionCheckItemLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(SupervisionCheckItemLogic::getError()); } /** * @notes 删除工程监理--新增检查项 * @return \think\response\Json * @author likeadmin * @date 2024/02/26 15:34 */ public function delete() { $params = (new SupervisionCheckItemValidate())->post()->goCheck('delete'); $result = SupervisionCheckItemLogic::delete($params); if (true === $result) { return $this->success('删除成功', [], 1, 1); } return $this->fail(SupervisionCheckItemLogic::getError()); } /** * @notes 获取工程监理--新增检查项详情 * @return \think\response\Json * @author likeadmin * @date 2024/02/26 15:34 */ public function detail() { $params = (new SupervisionCheckItemValidate())->goCheck('detail'); $result = SupervisionCheckItemLogic::detail($params); return $this->data($result); } }