生产日报表
parent
959b9dbe19
commit
dfa5730cb3
@ -0,0 +1,443 @@
|
|||||||
|
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 MesDailyReportVo extends BaseEntity {
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
// 车间
|
||||||
|
@Excel(name = "车间编码")
|
||||||
|
private String workshopCode;
|
||||||
|
@Excel(name = "车间编码")
|
||||||
|
private String workshopName;
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
||||||
|
@Excel(name = "日期")
|
||||||
|
private Date productDate;//工单日期
|
||||||
|
// sap
|
||||||
|
@Excel(name = "产线编码")
|
||||||
|
private String sapCode;
|
||||||
|
@Excel(name = "产线名称")
|
||||||
|
private String sapName;
|
||||||
|
// 设备编码
|
||||||
|
private String equipmentCode;
|
||||||
|
@Excel(name = "组别")
|
||||||
|
private String equipmentName;
|
||||||
|
// 工时
|
||||||
|
|
||||||
|
private BigDecimal unitWorkingHours;
|
||||||
|
|
||||||
|
private String workorderCodeSap;
|
||||||
|
@Excel(name = "产品编码")
|
||||||
|
private String productCode;//产品编码
|
||||||
|
@Excel(name = "产品名称")
|
||||||
|
private String productName;//产品名称
|
||||||
|
|
||||||
|
//组别
|
||||||
|
private String teamCode;
|
||||||
|
private String teamDesc;
|
||||||
|
|
||||||
|
@Excel(name = "品类")
|
||||||
|
private String prodType;//分类
|
||||||
|
@Excel(name = "组长")
|
||||||
|
private String teamLeaderName;//组长
|
||||||
|
//计划产量
|
||||||
|
// 标准用人
|
||||||
|
@Excel(name = "标准用人")
|
||||||
|
private Long useMan;
|
||||||
|
// 标准效率
|
||||||
|
@Excel(name = "产线标准效率")
|
||||||
|
private BigDecimal efficiency;
|
||||||
|
@Excel(name = "工单号")
|
||||||
|
private String workorderCode;
|
||||||
|
private String workorderName;
|
||||||
|
private String quantity;//计划产量(箱)
|
||||||
|
@Excel(name = "规格")
|
||||||
|
private Long spec;//规格
|
||||||
|
@Excel(name = "单位")
|
||||||
|
private String unit;
|
||||||
|
@Excel(name = "计划产量")
|
||||||
|
private Long quantitySplit;
|
||||||
|
@Excel(name = "实际产量")
|
||||||
|
private String quantityFeedback;//实际产量(箱)
|
||||||
|
@Excel(name = "产量")
|
||||||
|
private String quantityAct;// 产量(盒)
|
||||||
|
@Excel(name = "产线标准效率")
|
||||||
|
private String completeRate;// 订单完成率
|
||||||
|
@Excel(name = "实际用人")
|
||||||
|
private String manStandard;//实际用人
|
||||||
|
@Excel(name = "标准工时")
|
||||||
|
private String workTimeStandard;//工时-标准
|
||||||
|
@Excel(name = "实际工时")
|
||||||
|
private BigDecimal workTime;//工时-实际
|
||||||
|
@Excel(name = "产线效率")
|
||||||
|
private String productivity;//工时-产线效率
|
||||||
|
@Excel(name = "总工时")
|
||||||
|
private String totalWorkTime;
|
||||||
|
@Excel(name = "标准人均效率")
|
||||||
|
private String manAvgStandard;//人均效率-标准
|
||||||
|
@Excel(name = "实际人均效率")
|
||||||
|
private String manAvgActual;//人均效率-实际
|
||||||
|
@Excel(name = "人均效率达成率")
|
||||||
|
private String manAvgDo;//人均效率-达成
|
||||||
|
private String actManHour;//实际人工时
|
||||||
|
|
||||||
|
private String productDateStart;//工单日期开始
|
||||||
|
private String productDateEnd;//工单日期结束
|
||||||
|
private String productStartDate;
|
||||||
|
private String productEndDate;
|
||||||
|
private String workCenter;
|
||||||
|
|
||||||
|
private String equipmentTypeCode;
|
||||||
|
|
||||||
|
private String machineCode;
|
||||||
|
@Excel(name = "工厂编码")
|
||||||
|
private String factoryCode;
|
||||||
|
|
||||||
|
|
||||||
|
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 String getQuantityAct() {
|
||||||
|
return quantityAct;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQuantityAct(String quantityAct) {
|
||||||
|
this.quantityAct = quantityAct;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCompleteRate() {
|
||||||
|
return completeRate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCompleteRate(String completeRate) {
|
||||||
|
this.completeRate = completeRate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProductivity() {
|
||||||
|
return productivity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setProductivity(String productivity) {
|
||||||
|
this.productivity = productivity;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public String getManAvgActual() {
|
||||||
|
return manAvgActual;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setManAvgActual(String manAvgActual) {
|
||||||
|
this.manAvgActual = manAvgActual;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getManAvgDo() {
|
||||||
|
return manAvgDo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setManAvgDo(String manAvgDo) {
|
||||||
|
this.manAvgDo = manAvgDo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getActManHour() {
|
||||||
|
return actManHour;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setActManHour(String actManHour) {
|
||||||
|
this.actManHour = actManHour;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProductStartDate() {
|
||||||
|
return productStartDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setProductStartDate(String productStartDate) {
|
||||||
|
this.productStartDate = productStartDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProductEndDate() {
|
||||||
|
return productEndDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setProductEndDate(String productEndDate) {
|
||||||
|
this.productEndDate = productEndDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTeamCode() {
|
||||||
|
return teamCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTeamCode(String teamCode) {
|
||||||
|
this.teamCode = teamCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTeamDesc() {
|
||||||
|
return teamDesc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTeamDesc(String teamDesc) {
|
||||||
|
this.teamDesc = teamDesc;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProdType() {
|
||||||
|
return prodType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setProdType(String prodType) {
|
||||||
|
this.prodType = prodType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTeamLeaderName() {
|
||||||
|
return teamLeaderName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTeamLeaderName(String teamLeaderName) {
|
||||||
|
this.teamLeaderName = teamLeaderName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProductCode() {
|
||||||
|
return productCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setProductCode(String productCode) {
|
||||||
|
this.productCode = productCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getSpec() {
|
||||||
|
return spec;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSpec(Long spec) {
|
||||||
|
this.spec = spec;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProductName() {
|
||||||
|
return productName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setProductName(String productName) {
|
||||||
|
this.productName = productName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUnit() {
|
||||||
|
return unit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUnit(String unit) {
|
||||||
|
this.unit = unit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getQuantity() {
|
||||||
|
return quantity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQuantity(String quantity) {
|
||||||
|
this.quantity = quantity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getQuantityFeedback() {
|
||||||
|
return quantityFeedback;
|
||||||
|
}
|
||||||
|
public void setQuantityFeedback(String quantityFeedback) {
|
||||||
|
this.quantityFeedback = quantityFeedback;
|
||||||
|
}
|
||||||
|
|
||||||
|
public BigDecimal getWorkTime() {
|
||||||
|
return workTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkTime(BigDecimal workTime) {
|
||||||
|
this.workTime = workTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getManStandard() {
|
||||||
|
return manStandard;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setManStandard(String manStandard) {
|
||||||
|
this.manStandard = manStandard;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkTimeStandard() {
|
||||||
|
return workTimeStandard;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkTimeStandard(String workTimeStandard) {
|
||||||
|
this.workTimeStandard = workTimeStandard;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getManAvgStandard() {
|
||||||
|
return manAvgStandard;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setManAvgStandard(String manAvgStandard) {
|
||||||
|
this.manAvgStandard = manAvgStandard;
|
||||||
|
}
|
||||||
|
public Date getProductDate() {
|
||||||
|
return productDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setProductDate(Date productDate) {
|
||||||
|
this.productDate = productDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkCenter() {
|
||||||
|
return workCenter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkCenter(String workCenter) {
|
||||||
|
this.workCenter = workCenter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEquipmentTypeCode() {
|
||||||
|
return equipmentTypeCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEquipmentTypeCode(String equipmentTypeCode) {
|
||||||
|
this.equipmentTypeCode = equipmentTypeCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkshopCode() {
|
||||||
|
return workshopCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkshopCode(String workshopCode) {
|
||||||
|
this.workshopCode = workshopCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkshopName() {
|
||||||
|
return workshopName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkshopName(String workshopName) {
|
||||||
|
this.workshopName = workshopName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSapCode() {
|
||||||
|
return sapCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSapCode(String sapCode) {
|
||||||
|
this.sapCode = sapCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getSapName() {
|
||||||
|
return sapName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSapName(String sapName) {
|
||||||
|
this.sapName = sapName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEquipmentCode() {
|
||||||
|
return equipmentCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEquipmentCode(String equipmentCode) {
|
||||||
|
this.equipmentCode = equipmentCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEquipmentName() {
|
||||||
|
return equipmentName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEquipmentName(String equipmentName) {
|
||||||
|
this.equipmentName = equipmentName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public BigDecimal getUnitWorkingHours() {
|
||||||
|
return unitWorkingHours;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUnitWorkingHours(BigDecimal unitWorkingHours) {
|
||||||
|
this.unitWorkingHours = unitWorkingHours;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkorderCodeSap() {
|
||||||
|
return workorderCodeSap;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkorderCodeSap(String workorderCodeSap) {
|
||||||
|
this.workorderCodeSap = workorderCodeSap;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getQuantitySplit() {
|
||||||
|
return quantitySplit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setQuantitySplit(Long quantitySplit) {
|
||||||
|
this.quantitySplit = quantitySplit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getUseMan() {
|
||||||
|
return useMan;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUseMan(Long useMan) {
|
||||||
|
this.useMan = useMan;
|
||||||
|
}
|
||||||
|
|
||||||
|
public BigDecimal getEfficiency() {
|
||||||
|
return efficiency;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEfficiency(BigDecimal efficiency) {
|
||||||
|
this.efficiency = efficiency;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkorderCode() {
|
||||||
|
return workorderCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkorderCode(String workorderCode) {
|
||||||
|
this.workorderCode = workorderCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkorderName() {
|
||||||
|
return workorderName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkorderName(String workorderName) {
|
||||||
|
this.workorderName = workorderName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMachineCode() {
|
||||||
|
return machineCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMachineCode(String machineCode) {
|
||||||
|
this.machineCode = machineCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getTotalWorkTime() {
|
||||||
|
return totalWorkTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTotalWorkTime(String totalWorkTime) {
|
||||||
|
this.totalWorkTime = totalWorkTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFactoryCode() {
|
||||||
|
return factoryCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFactoryCode(String factoryCode) {
|
||||||
|
this.factoryCode = factoryCode;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue