1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  | package com.matrix.system.hive.service; 
 |    
 |  import java.util.List; 
 |    
 |    
 |  import com.matrix.core.pojo.PaginationVO; 
 |  import com.matrix.system.hive.plugin.util.BaseServices; 
 |  import com.matrix.system.hive.pojo.AllotedAndInstored; 
 |    
 |  /** 
 |   * 
 |   * @date 2016-11-22 09:50 
 |   */ 
 |  public interface AllotedAndInstoredService  extends BaseServices<AllotedAndInstored> { 
 |       
 |       
 |      /** 
 |       * 分页查询AllotedAndInstored 
 |       *  
 |       */ 
 |      public List<AllotedAndInstored> findInPage(AllotedAndInstored allotedAndInstored, PaginationVO pageVo); 
 |    
 |     
 |  } 
 |  
  |