报表导出格式
This commit is contained in:
@@ -28,8 +28,8 @@ public class ChangePackagingBoxHistoryExcel {
|
||||
@Excel(name = "目的位置")
|
||||
private Integer targetSlot;
|
||||
@Excel(name = "操作类型")
|
||||
private Integer type;
|
||||
private String type1;
|
||||
@Excel(name = "操作时间")
|
||||
private LocalDateTime createTime;
|
||||
private String createTime1;
|
||||
|
||||
}
|
||||
@@ -19,26 +19,26 @@ import java.util.Date;
|
||||
public class WoPackagingBoxSubstrateExcel {
|
||||
|
||||
@Excel(name = "创建时间")
|
||||
private LocalDateTime boxCreateTime;
|
||||
private String boxCreateTime1;
|
||||
@Excel(name = "模组ID")
|
||||
private String woSubstrateId;
|
||||
@Excel(name = "BoxID")
|
||||
private String packagingBoxId;
|
||||
@Excel(name = "模组所在包装箱位置")
|
||||
private Integer slot;
|
||||
@Excel(name = "订单号")
|
||||
private String orderName;
|
||||
@Excel(name = "SAP物料号")
|
||||
private String sapMaterial;
|
||||
@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;
|
||||
@Excel(name = "最近打印时间")
|
||||
private LocalDateTime printTime;
|
||||
private String printTime1;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
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 printTime1;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user