From 9a91f3566103dec58f01cad8b9a82b824323125b Mon Sep 17 00:00:00 2001
From: 935090232@qq.com <ak473600000>
Date: Tue, 06 Apr 2021 20:55:54 +0800
Subject: [PATCH] 预约奖励积分,评价奖励积分

---
 zq-erp/src/main/resources/mybatis/mapper/hive/SysVipLabelDao.xml |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/zq-erp/src/main/resources/mybatis/mapper/hive/SysVipLabelDao.xml b/zq-erp/src/main/resources/mybatis/mapper/hive/SysVipLabelDao.xml
index 4e8d321..cae0a7a 100644
--- a/zq-erp/src/main/resources/mybatis/mapper/hive/SysVipLabelDao.xml
+++ b/zq-erp/src/main/resources/mybatis/mapper/hive/SysVipLabelDao.xml
@@ -121,6 +121,14 @@
         where id=#{id}
     </delete>
 
+    <delete id="deleteByIds" parameterType="java.util.List">
+        delete from sys_vip_label where  id in
+        <foreach collection="list" index="index" item="item" open="("
+                 separator="," close=")">
+            #{item}
+        </foreach>
+    </delete>
+
 
     <select id="selectByVipId" resultType="com.matrix.system.hive.bean.SysVipLabel">
         select b.*

--
Gitblit v1.9.1