| package com.matrix.system.hive.dao; | 
|    | 
| import com.matrix.system.hive.bean.SysCheckInfo; | 
| import org.apache.ibatis.annotations.Param; | 
|   | 
| import java.util.List; | 
|   | 
| import com.matrix.core.pojo.PaginationVO; | 
|    | 
|   | 
| /** | 
|  * | 
|  * @date 2016-07-19 14:52 | 
|  */ | 
|   | 
|   | 
| public interface SysCheckInfoDao{ | 
|   | 
|     public int insert(SysCheckInfo sysCheckInfo); | 
|         | 
|     public int update(SysCheckInfo sysCheckInfo); | 
|      | 
|     public int deleteByIds(@Param("list") List<Long> list); | 
|      | 
|     public int deleteById(Long id); | 
|      | 
|     public List<SysCheckInfo> selectInPage(@Param("record") SysCheckInfo sysCheckInfo, @Param("pageVo") PaginationVO pageVo); | 
|   | 
|     public List<SysCheckInfo> selectByModel(@Param("record") SysCheckInfo sysCheckInfo); | 
|      | 
|     public int  selectTotalRecord(@Param("record") SysCheckInfo sysCheckInfo); | 
|      | 
|     public SysCheckInfo  selectById(Long id); | 
|      | 
|     public void insertDetail(@Param("storeId") Long storeId, @Param("checkId") Long checkId); | 
|      | 
| } |