1
+ package online .xuanwei .bbs .mapper ;
2
+
3
+ import java .util .List ;
4
+ import online .xuanwei .bbs .model .Comment ;
5
+ import online .xuanwei .bbs .model .CommentExample ;
6
+ import org .apache .ibatis .annotations .Param ;
7
+ import org .apache .ibatis .session .RowBounds ;
8
+
9
+ public interface CommentMapper {
10
+ /**
11
+ * This method was generated by MyBatis Generator.
12
+ * This method corresponds to the database table comment
13
+ *
14
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
15
+ */
16
+ long countByExample (CommentExample example );
17
+
18
+ /**
19
+ * This method was generated by MyBatis Generator.
20
+ * This method corresponds to the database table comment
21
+ *
22
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
23
+ */
24
+ int deleteByExample (CommentExample example );
25
+
26
+ /**
27
+ * This method was generated by MyBatis Generator.
28
+ * This method corresponds to the database table comment
29
+ *
30
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
31
+ */
32
+ int deleteByPrimaryKey (Long id );
33
+
34
+ /**
35
+ * This method was generated by MyBatis Generator.
36
+ * This method corresponds to the database table comment
37
+ *
38
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
39
+ */
40
+ int insert (Comment record );
41
+
42
+ /**
43
+ * This method was generated by MyBatis Generator.
44
+ * This method corresponds to the database table comment
45
+ *
46
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
47
+ */
48
+ int insertSelective (Comment record );
49
+
50
+ /**
51
+ * This method was generated by MyBatis Generator.
52
+ * This method corresponds to the database table comment
53
+ *
54
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
55
+ */
56
+ List <Comment > selectByExampleWithRowbounds (CommentExample example , RowBounds rowBounds );
57
+
58
+ /**
59
+ * This method was generated by MyBatis Generator.
60
+ * This method corresponds to the database table comment
61
+ *
62
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
63
+ */
64
+ List <Comment > selectByExample (CommentExample example );
65
+
66
+ /**
67
+ * This method was generated by MyBatis Generator.
68
+ * This method corresponds to the database table comment
69
+ *
70
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
71
+ */
72
+ Comment selectByPrimaryKey (Long id );
73
+
74
+ /**
75
+ * This method was generated by MyBatis Generator.
76
+ * This method corresponds to the database table comment
77
+ *
78
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
79
+ */
80
+ int updateByExampleSelective (@ Param ("record" ) Comment record , @ Param ("example" ) CommentExample example );
81
+
82
+ /**
83
+ * This method was generated by MyBatis Generator.
84
+ * This method corresponds to the database table comment
85
+ *
86
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
87
+ */
88
+ int updateByExample (@ Param ("record" ) Comment record , @ Param ("example" ) CommentExample example );
89
+
90
+ /**
91
+ * This method was generated by MyBatis Generator.
92
+ * This method corresponds to the database table comment
93
+ *
94
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
95
+ */
96
+ int updateByPrimaryKeySelective (Comment record );
97
+
98
+ /**
99
+ * This method was generated by MyBatis Generator.
100
+ * This method corresponds to the database table comment
101
+ *
102
+ * @mbg.generated Thu Apr 15 22:07:05 CST 2021
103
+ */
104
+ int updateByPrimaryKey (Comment record );
105
+ }
0 commit comments