package com.matrix.system.hive.dao; import org.apache.ibatis.annotations.Param; import java.util.List; import com.matrix.system.hive.bean.SysSupplierType; import com.matrix.core.pojo.PaginationVO; /** * * @date 2016-07-18 11:21 */ public interface SysSupplierTypeDao{ public int insert(SysSupplierType sysSupplierType); public int update(SysSupplierType sysSupplierType); public int deleteByIds(@Param("list") List list); public int deleteById(Long iD); public List selectInPage(@Param("record") SysSupplierType sysSupplierType, @Param("pageVo") PaginationVO pageVo); public List selectByModel(@Param("record") SysSupplierType sysSupplierType); public int selectTotalRecord(@Param("record") SysSupplierType sysSupplierType); public SysSupplierType selectById(Long iD); }