From eaa5c1ddde681e25ea6bd3da6bf496c78b8c5f69 Mon Sep 17 00:00:00 2001
From: wzy <wzy19931122ai@163.com>
Date: Sat, 23 Jan 2021 22:55:29 +0800
Subject: [PATCH] modify
---
zq-erp/src/main/java/com/matrix/system/hive/dao/SysVipLabelDao.java | 5 ++++-
1 files changed, 4 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 19011db..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;
@@ -8,6 +9,8 @@
public interface SysVipLabelDao {
int insert(SysVipLabel sysVipLabel);
+
+ int insertRelate(SysVipLabelRelate sysVipLabelRelate);
int update(SysVipLabel sysVipLabel);
@@ -17,5 +20,5 @@
List<SysVipLabel> selectByModel(@Param("record") SysVipLabel sysVipLabel);
- int deleteByVipId(@Param("vipId") Long vipId);
+ int deleteRelateByVipId(@Param("vipId") Long vipId);
}
--
Gitblit v1.9.1