From e4774c6ff705d93fcf3694e244a18dad7f0bec77 Mon Sep 17 00:00:00 2001 From: chenrui <1187576398@qq.com> Date: 星期三, 02 四月 2025 09:31:18 +0800 Subject: [PATCH] 标准库功能修改备份开发 --- basic-server/src/main/resources/mapper/StandardProductListMapper.xml | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/basic-server/src/main/resources/mapper/StandardProductListMapper.xml b/basic-server/src/main/resources/mapper/StandardProductListMapper.xml index cd27a11..6584dfb 100644 --- a/basic-server/src/main/resources/mapper/StandardProductListMapper.xml +++ b/basic-server/src/main/resources/mapper/StandardProductListMapper.xml @@ -154,4 +154,12 @@ from structure_test_object_part where part_no = #{partNo} </select> + + <update id="updateProductListCheckStatus"> + UPDATE standard_product_list SET check_status = #{checkStatus} + WHERE ID IN + <foreach collection="ids" open="(" close=")" item="item"> + #{item} + </foreach> + </update> </mapper> -- Gitblit v1.9.3