From b27830f800b1995436b8658a93e8ed6afb9fdb41 Mon Sep 17 00:00:00 2001 From: mashuai Date: Fri, 12 Sep 2025 09:08:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=9F=E8=83=BD=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/material/ma/MachineMapper.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bonus-modules/bonus-material/src/main/resources/mapper/material/ma/MachineMapper.xml b/bonus-modules/bonus-material/src/main/resources/mapper/material/ma/MachineMapper.xml index 1d31f0eb..89b3ae27 100644 --- a/bonus-modules/bonus-material/src/main/resources/mapper/material/ma/MachineMapper.xml +++ b/bonus-modules/bonus-material/src/main/resources/mapper/material/ma/MachineMapper.xml @@ -729,6 +729,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" mm.ma_id as maId, mt2.type_name as maName, mt.type_name as maModel, + mt.type_name as maModel, mm.ma_code as maCode, mm.qr_code as qrCode, mm.type_id as typeId, @@ -751,6 +752,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" LEFT JOIN ma_type mt ON mt.type_id = mm.type_id LEFT JOIN ma_type mt2 ON mt.parent_id = mt2.type_id LEFT JOIN sys_dict_data sd on mm.ma_status = sd.dict_value and sd.dict_type = "ma_machine_status" + LEFT JOIN ma_supplier_info msi on msi.supplier_id = mm.ma_vender where 1=1 and mm.ma_code LIKE CONCAT('%',#{maCode},'%')