wzy
2021-01-10 16da0ad1fda1dffa3019425a6887d38ed4217f44
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
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.SysSerProj;
 
import java.util.List;
 
/**
 *
 * @date 2016-07-22 09:23
 */
public interface SysSerProjService  extends BaseServices<SysSerProj>{
    
    /**
     * 新增SysSerProj
     * 
     */
    public int add(SysSerProj sysSerProj);
       
       /**
     * 更新SysSerProj
     * 
     */
    public int modify(SysSerProj sysSerProj);
    
    /**
     * 批量删除SysSerProj
     * 
     */
    public int remove(List<Long> list);
 
    /**
     * 根据id删除SysSerProj
     * 
     */
    public int removeById(Long id);
    
    /**
     * 分页查询SysSerProj
     * 
     */
    public List<SysSerProj> findInPage(SysSerProj sysSerProj, PaginationVO pageVo);
 
    /**
     * 根据对象查询SysSerProj
     * 
     */
    public List<SysSerProj> findByModel(SysSerProj sysSerProj);
    
    /**
     * 统计记录数SysSerProj
     * 
     */
    public int  findTotal(SysSerProj sysSerProj);
    
    /**
     * 根据id查询SysSerProj
     * 
     */
    public SysSerProj  findById(Long id);
 
       
 
  
}