dataLists(new OaMeetingCateLists()); } /** * @notes 添加会议室管理 * @return \think\response\Json * @author likeadmin * @date 2024/05/22 14:24 */ public function add() { $params = (new OaMeetingCateValidate())->post()->goCheck('add'); $result = OaMeetingCateLogic::add($params); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(OaMeetingCateLogic::getError()); } /** * @notes 编辑会议室管理 * @return \think\response\Json * @author likeadmin * @date 2024/05/22 14:24 */ public function edit() { $params = (new OaMeetingCateValidate())->post()->goCheck('edit'); $result = OaMeetingCateLogic::edit($params); if (true === $result) { return $this->success('编辑成功', [], 1, 1); } return $this->fail(OaMeetingCateLogic::getError()); } /** * @notes 删除会议室管理 * @return \think\response\Json * @author likeadmin * @date 2024/05/22 14:24 */ public function delete() { $params = (new OaMeetingCateValidate())->post()->goCheck('delete'); OaMeetingCateLogic::delete($params); return $this->success('删除成功', [], 1, 1); } /** * @notes 获取会议室管理详情 * @return \think\response\Json * @author likeadmin * @date 2024/05/22 14:24 */ public function detail() { $params = (new OaMeetingCateValidate())->goCheck('detail'); $result = OaMeetingCateLogic::detail($params); return $this->data($result); } }