From 3236778a727a75bdb2f6fcb752c59068ec12ac28 Mon Sep 17 00:00:00 2001 From: 935090232@qq.com <ak473600000> Date: Tue, 03 May 2022 19:11:33 +0800 Subject: [PATCH] Merge branch 'developer' into alpha --- zq-erp/src/main/resources/mybatis/mapper/hive/SysShopInfoDao.xml | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/resources/mybatis/mapper/hive/SysShopInfoDao.xml b/zq-erp/src/main/resources/mybatis/mapper/hive/SysShopInfoDao.xml index a5cb67d..3cf87c3 100644 --- a/zq-erp/src/main/resources/mybatis/mapper/hive/SysShopInfoDao.xml +++ b/zq-erp/src/main/resources/mybatis/mapper/hive/SysShopInfoDao.xml @@ -310,5 +310,12 @@ <select id="selectZbShop" resultMap="SysShopInfoMap"> select * from sys_shop_info where shop_type=1 and company_id=#{companyId} </select> + <select id="selectByIds" resultType="com.matrix.system.hive.bean.SysShopInfo"> + select * from sys_shop_info where ID in + <foreach collection="list" index="index" item="item" open="(" + separator="," close=")"> + #{item} + </foreach> + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.1