烘房统计报表+产品追溯
parent
db16cdcfb7
commit
501ca0b094
@ -0,0 +1,83 @@
|
||||
package com.op.mes.domain;
|
||||
|
||||
import com.op.common.core.annotation.Excel;
|
||||
import com.op.common.core.web.domain.BaseEntity;
|
||||
import com.op.mes.domain.vo.DynamicColumnVo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Open Platform
|
||||
* @date 2024-12-12
|
||||
*/
|
||||
public class HFProduction extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
@Excel(name = "日期")
|
||||
private String ymd;
|
||||
@Excel(name = "烘房编码")
|
||||
private String equCode;
|
||||
@Excel(name = "烘房名称")
|
||||
private String equName;
|
||||
@Excel(name = "产量")
|
||||
private String quality;
|
||||
private String ymArrayStart;
|
||||
private String ymArrayEnd;
|
||||
private List<DynamicColumnVo> equNames;
|
||||
|
||||
public List<DynamicColumnVo> getEquNames() {
|
||||
return equNames;
|
||||
}
|
||||
|
||||
public void setEquNames(List<DynamicColumnVo> equNames) {
|
||||
this.equNames = equNames;
|
||||
}
|
||||
|
||||
public String getYmd() {
|
||||
return ymd;
|
||||
}
|
||||
|
||||
public void setYmd(String ymd) {
|
||||
this.ymd = ymd;
|
||||
}
|
||||
|
||||
public String getEquCode() {
|
||||
return equCode;
|
||||
}
|
||||
|
||||
public void setEquCode(String equCode) {
|
||||
this.equCode = equCode;
|
||||
}
|
||||
|
||||
public String getEquName() {
|
||||
return equName;
|
||||
}
|
||||
|
||||
public void setEquName(String equName) {
|
||||
this.equName = equName;
|
||||
}
|
||||
|
||||
public String getQuality() {
|
||||
return quality;
|
||||
}
|
||||
|
||||
public void setQuality(String quality) {
|
||||
this.quality = quality;
|
||||
}
|
||||
|
||||
public String getYmArrayStart() {
|
||||
return ymArrayStart;
|
||||
}
|
||||
|
||||
public void setYmArrayStart(String ymArrayStart) {
|
||||
this.ymArrayStart = ymArrayStart;
|
||||
}
|
||||
|
||||
public String getYmArrayEnd() {
|
||||
return ymArrayEnd;
|
||||
}
|
||||
|
||||
public void setYmArrayEnd(String ymArrayEnd) {
|
||||
this.ymArrayEnd = ymArrayEnd;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue