diff --git a/src/main/java/com/gaotao/modules/handlingunit/entity/dto/HandlingUnitDto.java b/src/main/java/com/gaotao/modules/handlingunit/entity/dto/HandlingUnitDto.java index 76bf4ca..c6b6111 100644 --- a/src/main/java/com/gaotao/modules/handlingunit/entity/dto/HandlingUnitDto.java +++ b/src/main/java/com/gaotao/modules/handlingunit/entity/dto/HandlingUnitDto.java @@ -33,6 +33,7 @@ public class HandlingUnitDto { private String orderRef3; private String supplierId; private String supplierBatchNo; + private String supplierManufactureDate; private String customerId; private Date manufactureDate; @DateTimeFormat(pattern = "yyyy-MM-dd") diff --git a/src/main/resources/mapper/warehouse/LabelQueryMapper.xml b/src/main/resources/mapper/warehouse/LabelQueryMapper.xml index 7e86723..90ad89f 100644 --- a/src/main/resources/mapper/warehouse/LabelQueryMapper.xml +++ b/src/main/resources/mapper/warehouse/LabelQueryMapper.xml @@ -30,6 +30,7 @@ w.WareHouseName as warehouseName, l.LocationName as locationName, h.supplier_batch_no as supplierBatchNo, + h.supplier_manufacture_date as supplierManufactureDate, h.height,h.wdr,h.eng_chg_level as engChgLevel,h.expired_date as expiredDate, h.count_flag as countFlag,h.last_count_date as lastCountDate,h.source_type as sourceType FROM handling_unit h WITH (NOLOCK)