cloudroam
2025-06-06 70f642c9a5090f051814d46c8f5bbce5e366ba89
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
package com.mzl.flower.mapper.film;
 
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface LikeCommentPoMapper {
//    /**
//     * countByExample
//     *
//     * @param example
//     * @return
//     */
//    long countByExample(LikeCommentPoExample example);
//
//    /**
//     * deleteByExample
//     *
//     * @param example
//     * @return
//     */
//    int deleteByExample(LikeCommentPoExample example);
//
//    /**
//     * deleteByPrimaryKey
//     *
//     * @param id
//     * @return
//     */
//    int deleteByPrimaryKey(Integer id);
//
//    /**
//     * insert
//     *
//     * @param record
//     * @return
//     */
//    int insert(LikeCommentPo record);
//
//    /**
//     * insertSelective
//     *
//     * @param record
//     * @return
//     */
//    int insertSelective(LikeCommentPo record);
//
//    /**
//     * selectByExample
//     *
//     * @param example
//     * @return
//     */
//    List<LikeCommentPo> selectByExample(LikeCommentPoExample example);
//
//    /**
//     * selectByPrimaryKey
//     *
//     * @param id
//     * @return
//     */
//    LikeCommentPo selectByPrimaryKey(Integer id);
//
//    /**
//     * updateByExampleSelective
//     *
//     * @param record
//     * @param example
//     * @return
//     */
//    int updateByExampleSelective(@Param("record") LikeCommentPo record, @Param("example") LikeCommentPoExample example);
//
//    /**
//     * updateByExample
//     *
//     * @param record
//     * @param example
//     * @return
//     */
//    int updateByExample(@Param("record") LikeCommentPo record, @Param("example") LikeCommentPoExample example);
//
//    /**
//     * updateByPrimaryKeySelective
//     *
//     * @param record
//     * @return
//     */
//    int updateByPrimaryKeySelective(LikeCommentPo record);
//
//    /**
//     * updateByPrimaryKey
//     *
//     * @param record
//     * @return
//     */
//    int updateByPrimaryKey(LikeCommentPo record);
}