From 0f945a5f4b6d9d52de68b32bf0b0ee5b7fcf89e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E9=B9=8F=E9=A3=9E?= Date: Thu, 7 May 2026 08:30:18 +0800 Subject: [PATCH] =?UTF-8?q?fix(mapper):=20=E4=BF=AE=E6=AD=A3=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E6=A3=80=E9=AA=8C=E4=BB=BB=E5=8A=A1=E8=AF=B7=E6=B1=82?= =?UTF-8?q?=E5=8F=B7=E5=AD=97=E6=AE=B5=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将QmsIncomingInspectionTaskMapper.xml中查询字段check_no替换为request_no - 确保返回结果中使用正确的请求号字段 - 修复三处SQL语句中的字段命名错误 --- .../resources/mapper/QmsIncomingInspectionTaskMapper.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nflg-wms-repository/src/main/resources/mapper/QmsIncomingInspectionTaskMapper.xml b/nflg-wms-repository/src/main/resources/mapper/QmsIncomingInspectionTaskMapper.xml index 5b3defb3..be24adf1 100644 --- a/nflg-wms-repository/src/main/resources/mapper/QmsIncomingInspectionTaskMapper.xml +++ b/nflg-wms-repository/src/main/resources/mapper/QmsIncomingInspectionTaskMapper.xml @@ -6,7 +6,7 @@ SELECT t.id, t.task_no, - t.check_no, + t.request_no, t.material_id, m.material_no, m.material_desc, @@ -109,7 +109,7 @@ SELECT t.id, t.task_no, - t.check_no, + t.request_no, t.material_id, m.material_no, m.material_desc, @@ -182,7 +182,7 @@