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