模组查询包装箱 时间

This commit is contained in:
2023-03-06 17:03:01 +08:00
parent 5b3f6f6f5d
commit 4fd5498f1e
6 changed files with 61 additions and 21 deletions

View File

@@ -17,21 +17,25 @@ import java.util.Date;
@Data
public class WoPackagingBoxSubstrateExcel {
@Excel(name = "产出时间")
@Excel(name = "创建时间")
private LocalDateTime createTime;
@Excel(name = "substrate ID")
@Excel(name = "模组ID")
private String woSubstrateId;
@Excel(name = "Box_ID")
private String packagingBoxId;
@Excel(name = "Pmpp")
private Float pmpp;
@Excel(name = "BOX_SLOT")
private Integer slot;
@Excel(name = "线体")
private Integer lineBody;
@Excel(name = "实际功率")
@Excel(name = "档位功率")
private String powerLevel;
@Excel(name = "补偿功率")
private Float pmpp;
@Excel(name = "实测功率")
private Float actualPmpp;
@Excel(name = "订单")
private String orderName;
@Excel(name = "线体")
private Integer lineBody;
@Excel(name = "SAP物料号")
private String sapMaterial;
}