From 089daef814a854b3552a6c59044326cdbcbe18cc Mon Sep 17 00:00:00 2001 From: zhangcheng <1679167928@qq.com> Date: Tue, 23 May 2023 21:30:27 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E6=97=A0=E6=B3=95=E5=88=A0?= =?UTF-8?q?=E9=99=A4=E7=89=A9=E6=96=99=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/mapper/ItemTypeMapper.xml | 36 ++++++++++++------- 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/wms/src/main/resources/mapper/ItemTypeMapper.xml b/wms/src/main/resources/mapper/ItemTypeMapper.xml index 61454eb..b34b0d2 100644 --- a/wms/src/main/resources/mapper/ItemTypeMapper.xml +++ b/wms/src/main/resources/mapper/ItemTypeMapper.xml @@ -1,9 +1,9 @@ + PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" + "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> - + @@ -19,28 +19,40 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" - + - select item_type_id, parent_id, ancestors, type_name, order_num, status, del_flag, create_by, create_time, update_by, update_time from wms_item_type + select item_type_id, + parent_id, + ancestors, + type_name, + order_num, + status, + del_flag, + create_by, + create_time, + update_by, + update_time + from wms_item_type update wms_item_type set del_flag=1 - id in #{it} + item_type_id in + #{it}