package com.matrix.system.hive.service; import com.matrix.core.pojo.PaginationVO; import com.matrix.system.hive.bean.SysVipLevel; import java.util.List; import com.matrix.system.hive.plugin.util.BaseServices; /** * * @date 2016-07-03 20:53 */ public interface SysVipLevelService extends BaseServices{ /** * 新增SysVipLevel * */ public int add(SysVipLevel sysVipLevel); /** * 更新SysVipLevel * */ public int modify(SysVipLevel sysVipLevel); /** * 批量删除SysVipLevel * */ public int remove(List list); /** * 根据id删除SysVipLevel * */ public int removeById(Long id); /** * 分页查询SysVipLevel * */ public List findInPage(SysVipLevel sysVipLevel, PaginationVO pageVo); /** * 根据对象查询SysVipLevel * */ public List findByModel(SysVipLevel sysVipLevel); /** * 统计记录数SysVipLevel * */ public int findTotal(SysVipLevel sysVipLevel); /** * 根据id查询SysVipLevel * */ public SysVipLevel findById(Long id); }