成型机生产报表
parent
6b33ebdcf5
commit
ea89b6779b
@ -0,0 +1,97 @@
|
||||
package com.op.mes.domain;
|
||||
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
import com.op.mes.domain.vo.DynamicColumnVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 成型机产量统计报表实体类
|
||||
* @date 2024-4-22
|
||||
*/
|
||||
public class MesMachineReport extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String productCode; //产品编码
|
||||
private String productName; //产品名称
|
||||
private String quantity; //数量
|
||||
private String unit; //单位
|
||||
private String ymd; //年月日
|
||||
private String productDateStart; //查询开始时间
|
||||
private String productDateEnd; //查询结束时间
|
||||
private String pduCode; //数据唯一键
|
||||
|
||||
private List<DynamicColumnVo> productNames; //产品名称列表
|
||||
|
||||
public String getProductCode() {
|
||||
return productCode;
|
||||
}
|
||||
|
||||
public void setProductCode(String productCode) {
|
||||
this.productCode = productCode;
|
||||
}
|
||||
|
||||
public String getProductName() {
|
||||
return productName;
|
||||
}
|
||||
|
||||
public void setProductName(String productName) {
|
||||
this.productName = productName;
|
||||
}
|
||||
|
||||
public String getQuantity() {
|
||||
return quantity;
|
||||
}
|
||||
|
||||
public void setQuantity(String quantity) {
|
||||
this.quantity = quantity;
|
||||
}
|
||||
|
||||
public String getUnit() {
|
||||
return unit;
|
||||
}
|
||||
|
||||
public void setUnit(String unit) {
|
||||
this.unit = unit;
|
||||
}
|
||||
|
||||
public String getYmd() {
|
||||
return ymd;
|
||||
}
|
||||
|
||||
public void setYmd(String ymd) {
|
||||
this.ymd = ymd;
|
||||
}
|
||||
|
||||
public String getProductDateStart() {
|
||||
return productDateStart;
|
||||
}
|
||||
|
||||
public void setProductDateStart(String productDateStart) {
|
||||
this.productDateStart = productDateStart;
|
||||
}
|
||||
|
||||
public String getProductDateEnd() {
|
||||
return productDateEnd;
|
||||
}
|
||||
|
||||
public void setProductDateEnd(String productDateEnd) {
|
||||
this.productDateEnd = productDateEnd;
|
||||
}
|
||||
|
||||
public List<DynamicColumnVo> getProductNames() {
|
||||
return productNames;
|
||||
}
|
||||
|
||||
public void setProductNames(List<DynamicColumnVo> productNames) {
|
||||
this.productNames = productNames;
|
||||
}
|
||||
|
||||
public String getPduCode() {
|
||||
return pduCode;
|
||||
}
|
||||
|
||||
public void setPduCode(String pduCode) {
|
||||
this.pduCode = pduCode;
|
||||
}
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
package com.op.mes.domain.vo;
|
||||
|
||||
|
||||
public class DynamicColumnVo {
|
||||
|
||||
private String label;
|
||||
|
||||
private String code;
|
||||
|
||||
public String getLabel() {
|
||||
return label;
|
||||
}
|
||||
|
||||
public void setLabel(String label) {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue