Helius
2021-01-09 cf955aaa918244fdf1f2fd8367e01d2535f0c108
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package com.matrix.system.hive.service;
 
import java.util.List;
 
import com.matrix.system.hive.bean.VipAnswer;
import com.matrix.system.hive.plugin.util.BaseServices;
import com.matrix.core.pojo.PaginationVO;
 
/**
 *
 * @date 2017-03-01 09:42
 */
public interface VipAnswerService  extends BaseServices<VipAnswer>{
    
    /**
     * 新增VipAnswer
     * 
     */
    public int add(VipAnswer vipAnswer);
       
       /**
     * 批量新增VipAnswer
     * 
     */
    public int batchAdd(List<VipAnswer> vipAnswerList);
       
       /**
     * 根据map键值对 更新VipAnswer
     * 
     */
    public int modifyByMap(VipAnswer oldVipAnswer, VipAnswer newVipAnswer);
    
    /**
     * 根据对象 更新VipAnswer
     * 
     */
    public int modifyByModel(VipAnswer vipAnswer);
    
    /**
     * 批量删除VipAnswer
     * 
     */
    public int remove(List<Long> list);
 
    /**
     * 根据id删除VipAnswer
     * 
     */
    public int removeById(Long id);
    
    /**
     * 根据对象删除VipAnswer
     * 
     */
    public int removeByModel(VipAnswer vipAnswer);
    
    /**
     * 分页查询VipAnswer
     * 
     */
    public List<VipAnswer> findInPage(VipAnswer vipAnswer, PaginationVO pageVo);
 
    /**
     * 根据对象查询VipAnswer
     * 
     */
    public List<VipAnswer> findByModel(VipAnswer vipAnswer);
    
    /**
     * 统计记录数VipAnswer
     * 
     */
    public int  findTotal(VipAnswer vipAnswer);
    
    /**
     * 根据id查询VipAnswer
     * 
     */
    public VipAnswer  findById(Long id);
 
       
 
  
}