40 lines
1.0 KiB
Java
40 lines
1.0 KiB
Java
package com.cnbm.packing.excel;
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* 包装箱基板关联表 ( 基板表 )
|
|
*
|
|
* @author codeGenerator
|
|
* @since 2023-02-21
|
|
*/
|
|
@Data
|
|
public class WoPackagingBoxSubstrateManualExcel {
|
|
|
|
@Excel(name = "创建时间")
|
|
private String boxCreateTime1;
|
|
@Excel(name = "模组ID")
|
|
private String woSubstrateId;
|
|
@Excel(name = "BoxID")
|
|
private String packagingBoxId;
|
|
@Excel(name = "模组所在包装箱位置")
|
|
private Integer slot;
|
|
@Excel(name = "SAP物料号")
|
|
private String sapMaterial;
|
|
@Excel(name = "功率等级")
|
|
private String powerLevel;
|
|
@Excel(name = "线体")
|
|
private Integer lineBody;
|
|
@Excel(name = "盖板")
|
|
private String coverName;
|
|
@Excel(name = "产品等级")
|
|
private String productGrade;
|
|
@Excel(name = "最大额定熔断电流")
|
|
private String maxFuseCurrent;
|
|
@Excel(name = "节数")
|
|
private String pitchNumber;
|
|
@Excel(name = "最近打印时间")
|
|
private String printTime1;
|
|
|
|
} |