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