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