dataLists(new ProjectCostBudgetLists()); } /** * @notes 添加费用预算 * @return \think\response\Json * @author likeadmin * @date 2024/01/16 14:32 */ public function add() { $params = (new ProjectCostBudgetValidate())->post()->goCheck('add'); $result = ProjectCostBudgetLogic::add($params,$this->adminId); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(ProjectCostBudgetLogic::getError()); } /** * @notes 编辑费用预算 * @return \think\response\Json * @author likeadmin * @date 2024/01/16 14:32 */ public function edit() { $params = (new ProjectCostBudgetValidate())->post()->goCheck('edit'); $result = ProjectCostBudgetLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(ProjectCostBudgetLogic::getError()); } /** * @notes 删除费用预算 * @return \think\response\Json * @author likeadmin * @date 2024/01/16 14:32 */ public function delete() { $params = (new ProjectCostBudgetValidate())->post()->goCheck('delete'); ProjectCostBudgetLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取费用预算详情 * @return \think\response\Json * @author likeadmin * @date 2024/01/16 14:32 */ public function detail() { $params = (new ProjectCostBudgetValidate())->goCheck('detail'); $result = ProjectCostBudgetLogic::detail($params); return $this->data($result); } }