From 5f203d624adb0471a519ad3ac31054920bcd436f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E9=B9=8F=E9=A3=9E?= Date: Wed, 29 Apr 2026 09:27:52 +0800 Subject: [PATCH] =?UTF-8?q?fix(mapper):=20=E4=BF=AE=E5=A4=8DQmsIncomingIns?= =?UTF-8?q?pectionTaskMapper=E6=9F=A5=E8=AF=A2=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在查询结果中添加warehouse字段 - 在查询结果中添加storage_days字段 - 保持callback_result字段不变 - 完善LEFT JOIN语句相关字段映射关系 --- .../main/resources/mapper/QmsIncomingInspectionTaskMapper.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nflg-wms-repository/src/main/resources/mapper/QmsIncomingInspectionTaskMapper.xml b/nflg-wms-repository/src/main/resources/mapper/QmsIncomingInspectionTaskMapper.xml index 675876ff..d568de0b 100644 --- a/nflg-wms-repository/src/main/resources/mapper/QmsIncomingInspectionTaskMapper.xml +++ b/nflg-wms-repository/src/main/resources/mapper/QmsIncomingInspectionTaskMapper.xml @@ -39,7 +39,9 @@ t.update_user_name, t.update_time, t.purchase_group, - t.callback_result + t.callback_result, + t.warehouse, + t.storage_days FROM qms_incoming_inspection_task t LEFT JOIN qms_qc_material m ON t.material_id = m.id LEFT JOIN qms_inspection_standard s ON t.inspection_standard_id = s.id