package com.matrix.system.hive.dao; 
 | 
   
 | 
import com.matrix.core.pojo.PaginationVO; 
 | 
import com.matrix.system.hive.bean.SysInstoreInfo; 
 | 
import org.apache.ibatis.annotations.Param; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
  
 | 
/** 
 | 
 * 
 | 
 * @date 2016-07-15 13:10 
 | 
 */ 
 | 
  
 | 
  
 | 
public interface SysInstoreInfoDao{ 
 | 
  
 | 
    public int insert(SysInstoreInfo sysInstoreInfo); 
 | 
        
 | 
    public int update(SysInstoreInfo sysInstoreInfo); 
 | 
     
 | 
    public int deleteByIds(@Param("list") List<Long> list); 
 | 
     
 | 
    public int deleteById(Long id); 
 | 
     
 | 
    public List<SysInstoreInfo> selectInPage(@Param("record") SysInstoreInfo sysInstoreInfo, @Param("pageVo") PaginationVO pageVo); 
 | 
  
 | 
    public List<SysInstoreInfo> selectByModel(@Param("record") SysInstoreInfo sysInstoreInfo); 
 | 
     
 | 
    public int  selectTotalRecord(@Param("record") SysInstoreInfo sysInstoreInfo); 
 | 
     
 | 
    public SysInstoreInfo  selectById(Long id); 
 | 
  
 | 
  
 | 
} 
 |