浏览代码

2023年9月25日09:44:55

纪新园 1 年之前
父节点
当前提交
c53e760855
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      ruoyi-admin/src/main/java/com/ruoyi/web/controller/iot/domain/Device.java

+ 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;
     }
 }