实际功率字段

This commit is contained in:
2023-03-03 15:02:10 +08:00
parent 2e72fb7df8
commit 333d076f6e
26 changed files with 85 additions and 78 deletions

View File

@@ -18,23 +18,23 @@ import java.util.Date;
public class ChangePackagingBoxHistoryExcel {
@Excel(name = "ID")
private Long id;
@Excel(name = "基板ID或模组id")
@Excel(name = "基板ID")
private String substrateId;
@Excel(name = "源包装箱box no, 关联t_wo_packaging_box.box_no 字段")
@Excel(name = "源包装箱")
private String sourceBoxNo;
@Excel(name = "箱slot")
@Excel(name = "位置")
private Integer sourceSlot;
@Excel(name = "离开时间")
private LocalDateTime leaveTime;
@Excel(name = "标箱box no, 关联t_wo_packaging_box.box_no 字段")
@Excel(name = "的包装箱")
private String targetBoxNo;
@Excel(name = "标箱slot")
@Excel(name = "的位置")
private Integer targetSlot;
@Excel(name = "进入时间")
private LocalDateTime inputTime;
@Excel(name = "等级")
private String grade;
@Excel(name = "类型1=加入包装箱2=移除包装箱3=换箱")
@Excel(name = "操作类型")
private Integer type;
@Excel(name = "删除标志,是否有效:1 可用 0不可用")
private Integer valid;
@@ -42,7 +42,7 @@ public class ChangePackagingBoxHistoryExcel {
private Long creatorId;
@Excel(name = "创建人姓名")
private String creatorName;
@Excel(name = "创建时间")
@Excel(name = "操作时间")
private LocalDateTime createTime;
@Excel(name = "更新人")
private Long updaterId;

View File

@@ -18,9 +18,9 @@ import java.util.Date;
public class WoPackagingBoxSubstrateExcel {
@Excel(name = "ID")
private Long id;
@Excel(name = "包装箱IDBoxId")
@Excel(name = "Box_ID")
private String packagingBoxId;
@Excel(name = "基板ID")
@Excel(name = "substrate ID")
private String woSubstrateId;
@Excel(name = "创建人")
private Long creatorId;
@@ -36,7 +36,7 @@ public class WoPackagingBoxSubstrateExcel {
private LocalDateTime updateTime;
@Excel(name = "版本号")
private Integer version;
@Excel(name = "箱中位置")
@Excel(name = "BOX_SLOT")
private Integer slot;
@Excel(name = "进入时间")
private LocalDateTime inputTime;
@@ -44,15 +44,15 @@ public class WoPackagingBoxSubstrateExcel {
private Integer valid;
@Excel(name = "SAP MATERIAL,从t_wo_power_level 对应过来的")
private String sapMaterial;
@Excel(name = "线体,从t_wo_power_level 对应过来的1=F ; 2=S")
@Excel(name = "线体")
private Integer lineBody;
@Excel(name = "功率等级")
private String powerLevel;
@Excel(name = "")
private LocalDateTime lastUpdateTime;
@Excel(name = "补偿pmpp")
@Excel(name = "补偿后的功率,pmpp")
private Float pmpp;
@Excel(name = "订单")
@Excel(name = "订单")
private String orderName;
@Excel(name = "")
private Long binclassFl1;
@@ -114,6 +114,8 @@ public class WoPackagingBoxSubstrateExcel {
private Float uocFl1;
@Excel(name = "")
private Float uocFl2;
@Excel(name = "真实PMPP")
private Float actualPmpp;
}