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