From d5e655ff9eb0d3cff17925dae7295c8cb5010b64 Mon Sep 17 00:00:00 2001
From: 935090232@qq.com <ak473600000>
Date: Sun, 24 Jan 2021 15:05:41 +0800
Subject: [PATCH] 消息提醒
---
zq-erp/src/main/java/com/matrix/system/hive/dao/SysVipLabelDao.java | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/zq-erp/src/main/java/com/matrix/system/hive/dao/SysVipLabelDao.java b/zq-erp/src/main/java/com/matrix/system/hive/dao/SysVipLabelDao.java
index 7333440..6c5cf07 100644
--- a/zq-erp/src/main/java/com/matrix/system/hive/dao/SysVipLabelDao.java
+++ b/zq-erp/src/main/java/com/matrix/system/hive/dao/SysVipLabelDao.java
@@ -1,6 +1,7 @@
package com.matrix.system.hive.dao;
import com.matrix.system.hive.bean.SysVipLabel;
+import com.matrix.system.hive.bean.SysVipLabelRelate;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -9,11 +10,15 @@
int insert(SysVipLabel sysVipLabel);
+ int insertRelate(SysVipLabelRelate sysVipLabelRelate);
+
+ int update(SysVipLabel sysVipLabel);
+
int deleteById(@Param("id") Long id);
List<SysVipLabel> selectByVipId(@Param("vipId") Long vipId);
List<SysVipLabel> selectByModel(@Param("record") SysVipLabel sysVipLabel);
- int deleteByVipId(@Param("vipId") Long vipId);
+ int deleteRelateByVipId(@Param("vipId") Long vipId);
}
--
Gitblit v1.9.1