wzy
2021-01-23 a672e4e8c05be9c763943a06cfe5220ef217934c
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);
}