935090232@qq.com
2021-04-01 5371cd3262eea83baa626edddb5a6b1a9ede3cae
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
package com.matrix.system.hive.service;
 
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.hive.bean.SysVipLevel;
import java.util.List;
import com.matrix.system.hive.plugin.util.BaseServices;
/**
 *
 * @date 2016-07-03 20:53
 */
public interface SysVipLevelService  extends BaseServices<SysVipLevel>{
    
    /**
     * 新增SysVipLevel
     * 
     */
    public int add(SysVipLevel sysVipLevel);
       
       /**
     * 更新SysVipLevel
     * 
     */
    public int modify(SysVipLevel sysVipLevel);
    
    /**
     * 批量删除SysVipLevel
     * 
     */
    public int remove(List<Long> list);
 
    /**
     * 根据id删除SysVipLevel
     * 
     */
    public int removeById(Long id);
    
    /**
     * 分页查询SysVipLevel
     * 
     */
    public List<SysVipLevel> findInPage(SysVipLevel sysVipLevel, PaginationVO pageVo);
 
    /**
     * 根据对象查询SysVipLevel
     * 
     */
    public List<SysVipLevel> findByModel(SysVipLevel sysVipLevel);
    
    /**
     * 统计记录数SysVipLevel
     * 
     */
    public int  findTotal(SysVipLevel sysVipLevel);
    
    /**
     * 根据id查询SysVipLevel
     * 
     */
    public SysVipLevel  findById(Long id);
 
       
 
  
}