From a2ac542bdddff8e8d1941b907d825a4eb508ee0b Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Fri, 10 Oct 2025 13:08:50 +0800 Subject: [PATCH] =?UTF-8?q?2025-10-10=20=E9=A2=86=E6=96=99=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E7=AE=A1=E7=90=86=E7=9A=84=E6=9D=90=E6=96=99=E6=98=8E?= =?UTF-8?q?=E7=BB=86=E6=96=B0=E5=A2=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../gaotao/modules/pms/entity/PartInformationEntity.java | 1 + src/main/resources/mapper/pms/QcBaseInfoMapper.xml | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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}