فهرست منبع

机器类修改

wangxiaoming 7 سال پیش
والد
کامیت
4f81d708b8
1فایلهای تغییر یافته به همراه28 افزوده شده و 0 حذف شده
  1. 28 0
      watero-rst-core/src/main/java/com.iamberry.rst.core/pts/PtsMachine.java

+ 28 - 0
watero-rst-core/src/main/java/com.iamberry.rst.core/pts/PtsMachine.java

@@ -27,6 +27,10 @@ public class PtsMachine implements Serializable{
     private Date machineUpdateTime;//修改时间
     private Integer machineProduceId;//产品ID
 
+    private Integer machineBatchId; //批次id
+    private Integer machineBomId; //bom单id
+    private Integer machineIsRetreading; //是否翻新机
+
     public Integer getMachineId() {
         return machineId;
     }
@@ -170,4 +174,28 @@ public class PtsMachine implements Serializable{
     public void setMachineProduceId(Integer machineProduceId) {
         this.machineProduceId = machineProduceId;
     }
+
+    public Integer getMachineBatchId() {
+        return machineBatchId;
+    }
+
+    public void setMachineBatchId(Integer machineBatchId) {
+        this.machineBatchId = machineBatchId;
+    }
+
+    public Integer getMachineBomId() {
+        return machineBomId;
+    }
+
+    public void setMachineBomId(Integer machineBomId) {
+        this.machineBomId = machineBomId;
+    }
+
+    public Integer getMachineIsRetreading() {
+        return machineIsRetreading;
+    }
+
+    public void setMachineIsRetreading(Integer machineIsRetreading) {
+        this.machineIsRetreading = machineIsRetreading;
+    }
 }