From 5c106850deec30a5b7407918e2fd5daff97dc560 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Thu, 29 Jan 2026 14:25:27 +0800
Subject: [PATCH] 共享设备表
---
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/controller/FwDevicePerShareController.java | 25 ++++++++-----------------
1 files changed, 8 insertions(+), 17 deletions(-)
diff --git a/drone-service/drone-fw/src/main/java/org/sxkj/fw/fwDevicePerShare/controller/FwDevicePerShareController.java b/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/controller/FwDevicePerShareController.java
similarity index 83%
rename from drone-service/drone-fw/src/main/java/org/sxkj/fw/fwDevicePerShare/controller/FwDevicePerShareController.java
rename to drone-service/drone-fw/src/main/java/org/sxkj/fw/device/controller/FwDevicePerShareController.java
index 48c0a21..d669a03 100644
--- a/drone-service/drone-fw/src/main/java/org/sxkj/fw/fwDevicePerShare/controller/FwDevicePerShareController.java
+++ b/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/controller/FwDevicePerShareController.java
@@ -14,7 +14,7 @@
* this software without specific prior written permission.
* Author: Chill 庄骞 (smallchill@163.com)
*/
-package org.sxkj.fw.fwDevicePerShare.controller;
+package org.sxkj.fw.device.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
@@ -23,30 +23,21 @@
import lombok.AllArgsConstructor;
import javax.validation.Valid;
-import org.springblade.core.secure.BladeUser;
import org.springblade.core.mp.support.Condition;
import org.springblade.core.mp.support.Query;
import org.springblade.core.tool.api.R;
import org.springblade.core.tool.utils.BeanUtil;
import org.springblade.core.tool.utils.Func;
import org.springframework.web.bind.annotation.*;
-import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
-import org.sxkj.fw.fwDevicePerShare.dto.FwDevicePerShareDTO;
-import org.sxkj.fw.fwDevicePerShare.entity.FwDevicePerShareEntity;
-import org.sxkj.fw.fwDevicePerShare.vo.FwDevicePerShareVO;
-import org.sxkj.fw.fwDevicePerShare.excel.FwDevicePerShareExcel;
-import org.sxkj.fw.fwDevicePerShare.wrapper.FwDevicePerShareWrapper;
-import org.sxkj.fw.fwDevicePerShare.service.IFwDevicePerShareService;
+import org.sxkj.fw.device.dto.FwDevicePerShareDTO;
+import org.sxkj.fw.device.entity.FwDevicePerShareEntity;
+import org.sxkj.fw.device.vo.FwDevicePerShareVO;
+import org.sxkj.fw.device.wrapper.FwDevicePerShareWrapper;
+import org.sxkj.fw.device.service.IFwDevicePerShareService;
import org.springblade.core.boot.ctrl.BladeController;
-import org.springblade.core.tool.utils.DateUtil;
-import org.springblade.core.excel.util.ExcelUtil;
-import org.springblade.core.tool.constant.BladeConstant;
-import springfox.documentation.annotations.ApiIgnore;
-import java.util.Map;
-import java.util.List;
+
import java.util.Objects;
-import javax.servlet.http.HttpServletResponse;
/**
* 设备权限分享表 控制器
@@ -56,7 +47,7 @@
*/
@RestController
@AllArgsConstructor
-@RequestMapping("fwDevicePerShare/fwDevicePerShare")
+@RequestMapping("device/fwDevicePerShare")
@Api(value = "设备权限分享表", tags = "设备权限分享表接口")
public class FwDevicePerShareController extends BladeController {
--
Gitblit v1.9.3