package com.matrix.system.hive.dao; import com.matrix.system.hive.bean.SysVipLevel; import org.apache.ibatis.annotations.Param; import com.matrix.core.pojo.PaginationVO; import java.util.List; /** * * @date 2016-07-03 20:53 */ public interface SysVipLevelDao{ public int insert(SysVipLevel sysVipLevel); public int update(SysVipLevel sysVipLevel); public int deleteByIds(@Param("list") List list); public int deleteById(Long id); public List selectInPage(@Param("record") SysVipLevel sysVipLevel, @Param("pageVo") PaginationVO pageVo); public List selectByModel(@Param("record") SysVipLevel sysVipLevel); public int selectTotalRecord(@Param("record") SysVipLevel sysVipLevel); public SysVipLevel selectById(Long id); }