Helius
2021-01-08 b6e7b81fd914cb08eb49d6cea916139e594020ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
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);
 
       
 
  
}