From 7b3c92b8e3ee2c42191e8ea56915b420265cfa80 Mon Sep 17 00:00:00 2001 From: shenzhouyu Date: Mon, 22 Jun 2026 11:20:58 +0800 Subject: [PATCH] =?UTF-8?q?part=20family=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/mapper/qms/QcMapper.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/mapper/qms/QcMapper.xml b/src/main/resources/mapper/qms/QcMapper.xml index 07c5920..d740f1c 100644 --- a/src/main/resources/mapper/qms/QcMapper.xml +++ b/src/main/resources/mapper/qms/QcMapper.xml @@ -1500,7 +1500,7 @@ qa.bu_no, dbo.get_bu_desc(qa.site, qa.bu_no) as buDesc, qa.attribute_no as familyID, - pf.FamilyName, + pf.family_name as familyName, qa.supplier_no, qa.attribute_remark, qa.create_time, @@ -1509,7 +1509,7 @@ qa.update_by, qa.attribute_type FROM qc_part_attribute as qa - LEFT JOIN PartFamily as pf on qa.attribute_no = pf.FamilyID and qa.site = pf.site + LEFT JOIN part_family as pf on qa.attribute_no = pf.family_id and qa.site = pf.site qa.site in (select site from eam_access_site where username = #{query.userName}) and (qa.bu_no) in (select * from dbo.query_bu(#{query.userName})) @@ -1521,7 +1521,7 @@ AND qa.attribute_no LIKE '%' + #{query.familyID}+'%' - AND pf.FamilyName LIKE '%' + #{query.familyName}+'%' + AND pf.family_name LIKE '%' + #{query.familyName}+'%' order by attribute_no