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.SysOutStore; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * 
 | 
 * @date 2016-07-25 12:43 
 | 
 */ 
 | 
public interface SysOutStoreService  extends BaseServices<SysOutStore>{ 
 | 
     
 | 
    /** 
 | 
     * 新增SysOutStore 
 | 
     *  
 | 
     */ 
 | 
    public int add(SysOutStore sysOutStore); 
 | 
        
 | 
       /** 
 | 
     * 更新SysOutStore 
 | 
     *  
 | 
     */ 
 | 
    public int modify(SysOutStore sysOutStore); 
 | 
     
 | 
    /** 
 | 
     * 批量删除SysOutStore 
 | 
     *  
 | 
     */ 
 | 
    public int remove(List<Long> list); 
 | 
  
 | 
    /** 
 | 
     * 根据id删除SysOutStore 
 | 
     *  
 | 
     */ 
 | 
    public int removeById(Long id); 
 | 
     
 | 
    /** 
 | 
     * 分页查询SysOutStore 
 | 
     *  
 | 
     */ 
 | 
    public List<SysOutStore> findInPage(SysOutStore sysOutStore, PaginationVO pageVo); 
 | 
  
 | 
    /** 
 | 
     * 根据对象查询SysOutStore 
 | 
     *  
 | 
     */ 
 | 
    public List<SysOutStore> findByModel(SysOutStore sysOutStore); 
 | 
     
 | 
    /** 
 | 
     * 统计记录数SysOutStore 
 | 
     *  
 | 
     */ 
 | 
    public int  findTotal(SysOutStore sysOutStore); 
 | 
     
 | 
    /** 
 | 
     * 根据id查询SysOutStore 
 | 
     *  
 | 
     */ 
 | 
    public SysOutStore  findById(Long id); 
 | 
  
 | 
    public int checkInfo(SysOutStore sysOutStore); 
 | 
  
 | 
        
 | 
  
 | 
   
 | 
} 
 |