feat(wms): 添加配卷时间和实际发货时间字段支持

- 在WmsDeliveryWaybillDetailVo中新增exportTime字段用于实际发货时间
- 将deliveryTime字段的Excel导出标签从发货时间改为配卷时间
- 在数据库映射文件中添加exportTime字段的映射关系
- 在查询语句中加入export_time字段以支持实际发货时间数据获取
This commit is contained in:
2026-04-15 15:21:17 +08:00
parent ec5da2a7ca
commit 05f0933514
2 changed files with 8 additions and 2 deletions

View File

@@ -76,9 +76,9 @@ public class WmsDeliveryWaybillDetailVo extends BaseEntity {
private String senderUnit;
/**
* 发货时间
* 配卷时间
*/
@ExcelProperty(value = "发货时间")
@ExcelProperty(value = "配卷时间")
private Date deliveryTime;
/**
@@ -129,6 +129,10 @@ public class WmsDeliveryWaybillDetailVo extends BaseEntity {
@ExcelProperty(value = "当前钢卷号")
private String currentCoilNo;
// 实际发货时间
@ExcelProperty(value = "实际发货时间")
private Date exportTime;
// 实际库区
@ExcelProperty(value = "实际库区")
private String actualWarehouseName;