dataLists(new SupervisionConstructionManagementPersonnelLists()); } /** * @notes 添加工程监理--施工管理人员 * @return \think\response\Json * @author likeadmin * @date 2024/02/26 10:33 */ public function add() { $params = (new SupervisionConstructionManagementPersonnelValidate())->post()->goCheck('add'); $result = SupervisionConstructionManagementPersonnelLogic::add($params,$this->adminId); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(SupervisionConstructionManagementPersonnelLogic::getError()); } /** * @notes 编辑工程监理--施工管理人员 * @return \think\response\Json * @author likeadmin * @date 2024/02/26 10:33 */ public function edit() { $params = (new SupervisionConstructionManagementPersonnelValidate())->post()->goCheck('edit'); $result = SupervisionConstructionManagementPersonnelLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(SupervisionConstructionManagementPersonnelLogic::getError()); } /** * @notes 删除工程监理--施工管理人员 * @return \think\response\Json * @author likeadmin * @date 2024/02/26 10:33 */ public function delete() { $params = (new SupervisionConstructionManagementPersonnelValidate())->post()->goCheck('delete'); SupervisionConstructionManagementPersonnelLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取工程监理--施工管理人员详情 * @return \think\response\Json * @author likeadmin * @date 2024/02/26 10:33 */ public function detail() { $params = (new SupervisionConstructionManagementPersonnelValidate())->goCheck('detail'); $result = SupervisionConstructionManagementPersonnelLogic::detail($params); return $this->data($result); } }