dataLists(new ProcurementContractChangeLists()); } /** * @notes 添加 * @return \think\response\Json * @author likeadmin * @date 2023/12/12 15:31 */ public function add() { $params = (new ProcurementContractChangeValidate())->post()->goCheck('add'); $result = ProcurementContractChangeLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(ProcurementContractChangeLogic::getError()); } /** * @notes 编辑 * @return \think\response\Json * @author likeadmin * @date 2023/12/12 15:31 */ public function edit() { $params = (new ProcurementContractChangeValidate())->post()->goCheck('edit'); $result = ProcurementContractChangeLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(ProcurementContractChangeLogic::getError()); } /** * @notes 删除 * @return \think\response\Json * @author likeadmin * @date 2023/12/12 15:31 */ public function delete() { $params = (new ProcurementContractChangeValidate())->post()->goCheck('delete'); ProcurementContractChangeLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取详情 * @return \think\response\Json * @author likeadmin * @date 2023/12/12 15:31 */ public function detail() { $params = (new ProcurementContractChangeValidate())->goCheck('detail'); $result = ProcurementContractChangeLogic::detail($params); return $this->data($result); } }