package com.matrix.system.hive.dao; import java.util.List; import com.matrix.system.hive.bean.ServicesFlow; import org.apache.ibatis.annotations.Param; import com.matrix.core.pojo.PaginationVO; /** * * @date 2016-09-12 19:31 */ public interface ServicesFlowDao{ public int insert(ServicesFlow servicesFlow); public int update(ServicesFlow servicesFlow); public int deleteByIds(@Param("list") List list); public int deleteById(Long id); public List selectInPage(@Param("record") ServicesFlow servicesFlow, @Param("pageVo") PaginationVO pageVo); public List selectByModel(@Param("record") ServicesFlow servicesFlow); public int selectTotalRecord(@Param("record") ServicesFlow servicesFlow); public ServicesFlow selectById(Long id); public List selectInPage2(@Param("record") ServicesFlow servicesFlow, @Param("pageVo") PaginationVO pageVo); public int selectTotalRecord2(@Param("record") ServicesFlow servicesFlow); }