日生产报表加白坯参考按钮
parent
6d7f042ccb
commit
31e2d8f30e
@ -0,0 +1,80 @@
|
|||||||
|
package com.op.mes.domain.vo;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import com.op.common.core.annotation.Excel;
|
||||||
|
import com.op.common.core.web.domain.BaseEntity;
|
||||||
|
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
public class MesDailyReportBPVo extends BaseEntity {
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
@Excel(name = "组别")
|
||||||
|
private String equipmentName;
|
||||||
|
@Excel(name = "产品编码")
|
||||||
|
private String productCode;//产品编码
|
||||||
|
@Excel(name = "产品名称")
|
||||||
|
private String productName;//产品名称
|
||||||
|
@Excel(name = "规格")
|
||||||
|
private Long spec;//规格
|
||||||
|
@Excel(name = "实际产量(件)")
|
||||||
|
private String quantityFeedback;//实际产量(箱)
|
||||||
|
private String productDateStart;//工单日期开始
|
||||||
|
private String productDateEnd;//工单日期结束
|
||||||
|
|
||||||
|
public String getEquipmentName() {
|
||||||
|
return equipmentName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEquipmentName(String equipmentName) {
|
||||||
|
this.equipmentName = equipmentName;
|
||||||
|
}
|
||||||
|
|
||||||
|
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 Long getSpec() {
|
||||||
|
return spec;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSpec(Long spec) {
|
||||||
|
this.spec = spec;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getQuantityFeedback() {
|
||||||
|
return quantityFeedback;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQuantityFeedback(String quantityFeedback) {
|
||||||
|
this.quantityFeedback = quantityFeedback;
|
||||||
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue