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
67
68
69
70
71
72
73
74
package com.matrix.system.hive.service;
 
 
import com.matrix.core.pojo.PaginationVO;
import com.matrix.system.hive.bean.ArticleComment;
import com.matrix.system.hive.plugin.util.BaseServices;
 
import java.util.List;
 
 
/**
 *
 * @date 2016-12-12 11:26
 */
public interface ArticleCommentService  extends BaseServices<ArticleComment> {
    
    /**
     * 新增ArticleComment
     * 
     */
    public int add(ArticleComment articleComment);
       
       /**
     * 更新ArticleComment
     * 
     */
    public int modify(ArticleComment articleComment);
    
    /**
     * 批量删除ArticleComment
     * 
     */
    public int remove(List<Long> list);
 
    /**
     * 根据id删除ArticleComment
     * 
     */
    public int removeById(Long id);
    
    /**
     * 根据对象删除ArticleComment
     * 
     */
    public int removeByModel(ArticleComment articleComment);
    
    /**
     * 分页查询ArticleComment
     * 
     */
    public List<ArticleComment> findInPage(ArticleComment articleComment, PaginationVO pageVo);
 
    /**
     * 根据对象查询ArticleComment
     * 
     */
    public List<ArticleComment> findByModel(ArticleComment articleComment);
    
    /**
     * 统计记录数ArticleComment
     * 
     */
    public int  findTotal(ArticleComment articleComment);
    
    /**
     * 根据id查询ArticleComment
     * 
     */
    public ArticleComment  findById(Long id);
 
       
 
  
}