cloudroam
2025-06-04 ed0dc655e6732f15d30f399c0d460ad7b9fe42da
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
package com.mzl.flower.mapper.film;
 
import com.mzl.flower.entity.film.CommentPo;
import com.mzl.flower.entity.film.CommentPoExample;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
 
public interface CommentPoMapper {
    /**
     * countByExample
     *
     * @param example
     * @return
     */
    long countByExample(CommentPoExample example);
 
    /**
     * deleteByExample
     *
     * @param example
     * @return
     */
    int deleteByExample(CommentPoExample example);
 
    /**
     * deleteByPrimaryKey
     *
     * @param id
     * @return
     */
    int deleteByPrimaryKey(Integer id);
 
    /**
     * insert
     *
     * @param record
     * @return
     */
    int insert(CommentPo record);
 
    /**
     * insertSelective
     *
     * @param record
     * @return
     */
    int insertSelective(CommentPo record);
 
    /**
     * selectByExample
     *
     * @param example
     * @return
     */
    List<CommentPo> selectByExample(CommentPoExample example);
 
    /**
     * selectByPrimaryKey
     *
     * @param id
     * @return
     */
    CommentPo selectByPrimaryKey(Integer id);
 
    /**
     * updateByExampleSelective
     *
     * @param record
     * @param example
     * @return
     */
    int updateByExampleSelective(@Param("record") CommentPo record, @Param("example") CommentPoExample example);
 
    /**
     * updateByExample
     *
     * @param record
     * @param example
     * @return
     */
    int updateByExample(@Param("record") CommentPo record, @Param("example") CommentPoExample example);
 
    /**
     * updateByPrimaryKeySelective
     *
     * @param record
     * @return
     */
    int updateByPrimaryKeySelective(CommentPo record);
 
    /**
     * updateByPrimaryKey
     *
     * @param record
     * @return
     */
    int updateByPrimaryKey(CommentPo record);
 
    List<CommentPo> selectByArticleId(Integer articleId);
}