报表查询

This commit is contained in:
2023-03-16 09:55:43 +08:00
parent 5f5a60eb29
commit ba30dfe7af
8 changed files with 61 additions and 25 deletions

View File

@@ -1,6 +1,7 @@
package com.cnbm.packing.excel;
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.time.LocalDateTime;
@@ -18,12 +19,12 @@ import java.util.Date;
public class WoPackagingBoxSubstrateExcel {
@Excel(name = "创建时间")
private LocalDateTime createTime;
private LocalDateTime boxCreateTime;
@Excel(name = "模组ID")
private String woSubstrateId;
@Excel(name = "Box_ID")
@Excel(name = "BoxID")
private String packagingBoxId;
@Excel(name = "BOX_SLOT")
@Excel(name = "模组所在包装箱位置")
private Integer slot;
@Excel(name = "档位功率")
private String powerLevel;
@@ -37,5 +38,7 @@ public class WoPackagingBoxSubstrateExcel {
private Integer lineBody;
@Excel(name = "SAP物料号")
private String sapMaterial;
@Excel(name = "最近打印时间")
private LocalDateTime printTime;
}