|
|
@ -10,6 +10,8 @@ import java.util.Date;
|
|
|
|
public class MesDailyReportVo extends BaseEntity {
|
|
|
|
public class MesDailyReportVo extends BaseEntity {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "工厂编码")
|
|
|
|
|
|
|
|
private String factoryCode;
|
|
|
|
// 车间
|
|
|
|
// 车间
|
|
|
|
@Excel(name = "车间编码")
|
|
|
|
@Excel(name = "车间编码")
|
|
|
|
private String workshopCode;
|
|
|
|
private String workshopCode;
|
|
|
@ -27,8 +29,13 @@ public class MesDailyReportVo extends BaseEntity {
|
|
|
|
private String equipmentCode;
|
|
|
|
private String equipmentCode;
|
|
|
|
@Excel(name = "组别")
|
|
|
|
@Excel(name = "组别")
|
|
|
|
private String equipmentName;
|
|
|
|
private String equipmentName;
|
|
|
|
|
|
|
|
@Excel(name = "品类")
|
|
|
|
|
|
|
|
private String prodType;//分类
|
|
|
|
|
|
|
|
@Excel(name = "组长")
|
|
|
|
|
|
|
|
private String teamLeaderName;//组长
|
|
|
|
|
|
|
|
@Excel(name = "工单号")
|
|
|
|
|
|
|
|
private String workorderCode;
|
|
|
|
// 工时
|
|
|
|
// 工时
|
|
|
|
|
|
|
|
|
|
|
|
private BigDecimal unitWorkingHours;
|
|
|
|
private BigDecimal unitWorkingHours;
|
|
|
|
|
|
|
|
|
|
|
|
private String workorderCodeSap;
|
|
|
|
private String workorderCodeSap;
|
|
|
@ -36,45 +43,40 @@ public class MesDailyReportVo extends BaseEntity {
|
|
|
|
private String productCode;//产品编码
|
|
|
|
private String productCode;//产品编码
|
|
|
|
@Excel(name = "产品名称")
|
|
|
|
@Excel(name = "产品名称")
|
|
|
|
private String productName;//产品名称
|
|
|
|
private String productName;//产品名称
|
|
|
|
|
|
|
|
@Excel(name = "规格")
|
|
|
|
|
|
|
|
private Long spec;//规格
|
|
|
|
|
|
|
|
@Excel(name = "单位(件)")
|
|
|
|
|
|
|
|
private String unit;
|
|
|
|
|
|
|
|
@Excel(name = "计划产量(件)")
|
|
|
|
|
|
|
|
private Long quantitySplit;
|
|
|
|
|
|
|
|
@Excel(name = "实际产量(件)")
|
|
|
|
|
|
|
|
private String quantityFeedback;//实际产量(箱)
|
|
|
|
|
|
|
|
@Excel(name = "产量(PC)")
|
|
|
|
|
|
|
|
private String quantityAct;// 产量(盒)
|
|
|
|
|
|
|
|
@Excel(name = "订单完成率(%)")
|
|
|
|
|
|
|
|
private String completeRate;// 订单完成率
|
|
|
|
|
|
|
|
// 标准效率
|
|
|
|
|
|
|
|
@Excel(name = "产线标准效率(PC/H)")
|
|
|
|
|
|
|
|
private BigDecimal efficiency;
|
|
|
|
|
|
|
|
|
|
|
|
//组别
|
|
|
|
|
|
|
|
private String teamCode;
|
|
|
|
private String teamCode;
|
|
|
|
private String teamDesc;
|
|
|
|
private String teamDesc;
|
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "品类")
|
|
|
|
|
|
|
|
private String prodType;//分类
|
|
|
|
|
|
|
|
@Excel(name = "组长")
|
|
|
|
|
|
|
|
private String teamLeaderName;//组长
|
|
|
|
|
|
|
|
//计划产量
|
|
|
|
//计划产量
|
|
|
|
// 标准用人
|
|
|
|
// 标准用人
|
|
|
|
@Excel(name = "标准用人")
|
|
|
|
@Excel(name = "标准用人")
|
|
|
|
private BigDecimal useMan;
|
|
|
|
private BigDecimal useMan;
|
|
|
|
// 标准效率
|
|
|
|
|
|
|
|
@Excel(name = "产线标准效率")
|
|
|
|
|
|
|
|
private BigDecimal efficiency;
|
|
|
|
|
|
|
|
@Excel(name = "工单号")
|
|
|
|
|
|
|
|
private String workorderCode;
|
|
|
|
|
|
|
|
private String workorderName;
|
|
|
|
private String workorderName;
|
|
|
|
private String quantity;//计划产量(箱)
|
|
|
|
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 = "实际用人")
|
|
|
|
@Excel(name = "实际用人")
|
|
|
|
private String manStandard;//实际用人
|
|
|
|
private String manStandard;//实际用人
|
|
|
|
@Excel(name = "标准工时")
|
|
|
|
@Excel(name = "标准工时")
|
|
|
|
private String workTimeStandard;//工时-标准
|
|
|
|
private String workTimeStandard;//工时-标准
|
|
|
|
@Excel(name = "实际工时")
|
|
|
|
@Excel(name = "实际工时")
|
|
|
|
private BigDecimal workTime;//工时-实际
|
|
|
|
private BigDecimal workTime;//工时-实际
|
|
|
|
@Excel(name = "产线效率")
|
|
|
|
@Excel(name = "产线效率(%)")
|
|
|
|
private String productivity;//工时-产线效率
|
|
|
|
private String productivity;//工时-产线效率
|
|
|
|
@Excel(name = "总工时")
|
|
|
|
@Excel(name = "总工时")
|
|
|
|
private String totalWorkTime;
|
|
|
|
private String totalWorkTime;
|
|
|
@ -95,8 +97,6 @@ public class MesDailyReportVo extends BaseEntity {
|
|
|
|
private String equipmentTypeCode;
|
|
|
|
private String equipmentTypeCode;
|
|
|
|
|
|
|
|
|
|
|
|
private String machineCode;
|
|
|
|
private String machineCode;
|
|
|
|
@Excel(name = "工厂编码")
|
|
|
|
|
|
|
|
private String factoryCode;
|
|
|
|
|
|
|
|
private BigDecimal reportRate;
|
|
|
|
private BigDecimal reportRate;
|
|
|
|
|
|
|
|
|
|
|
|
public BigDecimal getReportRate() {
|
|
|
|
public BigDecimal getReportRate() {
|
|
|
|