生产订单管理模块(优化拆分显示)、湿料计划管理(BMS)
parent
e8f9176634
commit
ed1245fc5a
@ -0,0 +1,47 @@
|
||||
package com.op.mes.domain;
|
||||
|
||||
// 料罐id、物料id、班次id 实体类
|
||||
public class BMS {
|
||||
// 料罐id
|
||||
private Integer bucketId;
|
||||
// 物料id
|
||||
private Integer materialId;
|
||||
// 班次id
|
||||
private Integer shiftId;
|
||||
|
||||
public Integer getBucketId() {
|
||||
return bucketId;
|
||||
}
|
||||
|
||||
public void setBucketId(Integer bucketId) {
|
||||
this.bucketId = bucketId;
|
||||
}
|
||||
|
||||
public Integer getMaterialId() {
|
||||
return materialId;
|
||||
}
|
||||
|
||||
public void setMaterialId(Integer materialId) {
|
||||
this.materialId = materialId;
|
||||
}
|
||||
|
||||
public Integer getShiftId() {
|
||||
return shiftId;
|
||||
}
|
||||
|
||||
public void setShiftId(Integer shiftId) {
|
||||
this.shiftId = shiftId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "BMS{" +
|
||||
"bucketId=" + bucketId +
|
||||
", materialId=" + materialId +
|
||||
", shiftId=" + shiftId +
|
||||
'}';
|
||||
}
|
||||
|
||||
public BMS() {
|
||||
}
|
||||
}
|
@ -0,0 +1,47 @@
|
||||
package com.op.mes.domain;
|
||||
|
||||
// 物料实体类
|
||||
public class Product {
|
||||
// 物料id
|
||||
private Integer productId;
|
||||
// 物料code
|
||||
private String productCode;
|
||||
// 物料名称Desc
|
||||
private String productDesc;
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Product{" +
|
||||
"productId=" + productId +
|
||||
", productCode='" + productCode + '\'' +
|
||||
", productDesc='" + productDesc + '\'' +
|
||||
'}';
|
||||
}
|
||||
|
||||
public Integer getProductId() {
|
||||
return productId;
|
||||
}
|
||||
|
||||
public void setProductId(Integer productId) {
|
||||
this.productId = productId;
|
||||
}
|
||||
|
||||
public String getProductCode() {
|
||||
return productCode;
|
||||
}
|
||||
|
||||
public void setProductCode(String productCode) {
|
||||
this.productCode = productCode;
|
||||
}
|
||||
|
||||
public String getProductDesc() {
|
||||
return productDesc;
|
||||
}
|
||||
|
||||
public void setProductDesc(String productDesc) {
|
||||
this.productDesc = productDesc;
|
||||
}
|
||||
|
||||
public Product() {
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue