From a3e0493b2f597e8c49ee80a0c7ab92bc30dc60a3 Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期四, 10 四月 2025 11:13:36 +0800
Subject: [PATCH] 检验任务,进货检验车间文件选择去掉后缀
---
basic-server/src/main/resources/mapper/StandardProductListMapper.xml | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/basic-server/src/main/resources/mapper/StandardProductListMapper.xml b/basic-server/src/main/resources/mapper/StandardProductListMapper.xml
index cac1dcf..a85d156 100644
--- a/basic-server/src/main/resources/mapper/StandardProductListMapper.xml
+++ b/basic-server/src/main/resources/mapper/StandardProductListMapper.xml
@@ -163,4 +163,23 @@
#{item}
</foreach>
</update>
+
+ <select id="standardProductListNoPage" resultType="com.ruoyi.basic.pojo.StandardProductList">
+ SELECT * FROM standard_product_list
+ <where>
+ <if test="standardProductListDto.standardMethodListIds != null">
+ AND standard_method_list_id IN
+ <foreach collection="standardProductListDto.standardMethodListIds" open="(" close=")" separator="," item="item">
+ #{item}
+ </foreach>
+ </if>
+ <if test="standardProductListDto.tree != null and standardProductListDto.tree != '' ">
+ AND tree = #{standardProductListDto.tree}
+ </if>
+ <if test="standardProductListDto.state != null ">
+ AND state = #{standardProductListDto.state}
+ </if>
+ </where>
+ ORDER BY standard_method_list_id ASC
+ </select>
</mapper>
--
Gitblit v1.9.3