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