diff --git a/src/main/java/com/gaotao/modules/pms/entity/PartInformationEntity.java b/src/main/java/com/gaotao/modules/pms/entity/PartInformationEntity.java index 473f037..736c88b 100644 --- a/src/main/java/com/gaotao/modules/pms/entity/PartInformationEntity.java +++ b/src/main/java/com/gaotao/modules/pms/entity/PartInformationEntity.java @@ -73,6 +73,7 @@ public class PartInformationEntity { private Integer expirationWarningDay; private String inboundWarehouseId; private String outboundWarehouseId; + private String issueMethod; private String inboundLocationId; private Double exceedInRatio; private Double exceedOutRatio; diff --git a/src/main/resources/mapper/pms/QcBaseInfoMapper.xml b/src/main/resources/mapper/pms/QcBaseInfoMapper.xml index 22b7e2a..86d3011 100644 --- a/src/main/resources/mapper/pms/QcBaseInfoMapper.xml +++ b/src/main/resources/mapper/pms/QcBaseInfoMapper.xml @@ -1181,7 +1181,8 @@ min_value, adhesive_active_period_flag, thawing_duration, - accumulated_exposure_duration + accumulated_exposure_duration, + issue_method from part as a left join wareHouse as b on a.site = b.site and a.bu_no = b.bu_no and a.inbound_warehouse_id = b.WarehouseID left join wareHouse as c on a.site = c.site and a.bu_no = c.bu_no and a.outbound_warehouse_id = c.WarehouseID @@ -1248,7 +1249,8 @@ min_value = #{minValue, jdbcType=DECIMAL}, adhesive_active_period_flag = #{adhesiveActivePeriodFlag}, thawing_duration = #{thawingDuration}, - accumulated_exposure_duration = #{accumulatedExposureDuration} + accumulated_exposure_duration = #{accumulatedExposureDuration}, + issue_method = #{issueMethod} WHERE site = #{site} and partNo = #{partNo} and bu_no = #{buNo}