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