Browse Source

2023年9月25日09:44:55

纪新园 1 year ago
parent
commit
c53e760855

+ 3 - 3
ruoyi-admin/src/main/java/com/ruoyi/web/controller/iot/domain/Device.java

@@ -69,7 +69,7 @@ public class Device {
     /**
      * 部门
      */
-    private Long deptId;
+    private String deptId;
 
     public List<String> getConnectionTimeList() {
         return connectionTimeList;
@@ -175,11 +175,11 @@ public class Device {
         this.createUserId = createUserId;
     }
 
-    public Long getDeptId() {
+    public String getDeptId() {
         return deptId;
     }
 
-    public void setDeptId(Long deptId) {
+    public void setDeptId(String deptId) {
         this.deptId = deptId;
     }
 }