cigs4/ym-packing/src/main/java/com/cnbm/packing/excel/WoPackagingBoxSubstrateExcel.java

44 lines
1.1 KiB
Java
Raw Normal View History

2023-02-22 15:59:13 +08:00
package com.cnbm.packing.excel;
import cn.afterturn.easypoi.excel.annotation.Excel;
2023-03-16 09:55:43 +08:00
import io.swagger.annotations.ApiModelProperty;
2023-02-22 15:59:13 +08:00
import lombok.Data;
import java.time.LocalDateTime;
import java.math.BigDecimal;
import java.util.Date;
/**
* 包装箱基板关联表 ( 基板表 )
*
* @author codeGenerator
* @since 2023-02-21
*/
@Data
public class WoPackagingBoxSubstrateExcel {
2023-03-06 11:50:59 +08:00
2023-03-06 17:03:01 +08:00
@Excel(name = "创建时间")
2023-03-21 15:10:40 +08:00
private String boxCreateTime1;
2023-03-06 17:03:01 +08:00
@Excel(name = "模组ID")
2023-02-22 15:59:13 +08:00
private String woSubstrateId;
2023-03-16 09:55:43 +08:00
@Excel(name = "BoxID")
2023-03-06 11:50:59 +08:00
private String packagingBoxId;
2023-03-16 09:55:43 +08:00
@Excel(name = "模组所在包装箱位置")
2023-02-22 15:59:13 +08:00
private Integer slot;
2023-03-21 15:10:40 +08:00
@Excel(name = "订单号")
private String orderName;
@Excel(name = "SAP物料号")
private String sapMaterial;
2023-03-06 17:03:01 +08:00
@Excel(name = "档位功率")
private String powerLevel;
@Excel(name = "补偿功率")
private Float pmpp;
@Excel(name = "实测功率")
2023-03-06 11:50:59 +08:00
private Float actualPmpp;
2023-03-06 17:03:01 +08:00
@Excel(name = "线体")
private Integer lineBody;
2023-03-16 09:55:43 +08:00
@Excel(name = "最近打印时间")
2023-03-21 15:10:40 +08:00
private String printTime1;
2023-02-22 15:59:13 +08:00
}