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