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