1098226878 il y a 4 ans
Parent
commit
f9bec2c9a6

+ 9 - 0
java110-bean/src/main/java/com/java110/dto/machine/MachineDto.java

@@ -51,6 +51,7 @@ public class MachineDto extends PageDto implements Serializable {
     private String locationObjName;
     private String direction;//设备方向
     private String directionName;
+    private String typeId;
 
     private List<MachineAttrDto> machineAttrs;
 
@@ -310,4 +311,12 @@ public class MachineDto extends PageDto implements Serializable {
     public void setHeartbeatTime(String heartbeatTime) {
         this.heartbeatTime = heartbeatTime;
     }
+
+    public String getTypeId() {
+        return typeId;
+    }
+
+    public void setTypeId(String typeId) {
+        this.typeId = typeId;
+    }
 }

+ 9 - 0
java110-bean/src/main/java/com/java110/po/machine/MachinePo.java

@@ -25,6 +25,7 @@ public class MachinePo implements Serializable {
     private String locationObjId;
     private String state;
     private String direction;
+    private String typeId;
 
 
     public String getMachineId() {
@@ -130,4 +131,12 @@ public class MachinePo implements Serializable {
     public void setDirection(String direction) {
         this.direction = direction;
     }
+
+    public String getTypeId() {
+        return typeId;
+    }
+
+    public void setTypeId(String typeId) {
+        this.typeId = typeId;
+    }
 }