Browse Source

修改字段

lvzhikai 3 years ago
parent
commit
fcca8874dd

+ 47 - 32
depot-basic/src/main/java/com/chinaitop/depot/basic/mapper/BasicKeeperEducationMapper.xml

@@ -5,16 +5,17 @@
5 5
     <id column="id" property="id" jdbcType="INTEGER" />
6 6
     <result column="keeper_id" property="keeperId" jdbcType="INTEGER" />
7 7
     <result column="dataType" property="datatype" jdbcType="INTEGER" />
8
-    <result column="type" property="type" jdbcType="INTEGER" />
8
+    <result column="type_s" property="typeS" jdbcType="INTEGER" />
9 9
     <result column="occupation" property="occupation" jdbcType="INTEGER" />
10 10
     <result column="college" property="college" jdbcType="VARCHAR" />
11 11
     <result column="department" property="department" jdbcType="VARCHAR" />
12 12
     <result column="education" property="education" jdbcType="INTEGER" />
13 13
     <result column="degree" property="degree" jdbcType="INTEGER" />
14 14
     <result column="degree_detailed" property="degreeDetailed" jdbcType="INTEGER" />
15
-    <result column="rank" property="rank" jdbcType="INTEGER" />
15
+    <result column="rank_s" property="rankS" jdbcType="INTEGER" />
16 16
     <result column="issue_facility" property="issueFacility" jdbcType="VARCHAR" />
17 17
     <result column="issue_time" property="issueTime" jdbcType="TIMESTAMP" />
18
+    <result column="updatetime" property="updatetime" jdbcType="TIMESTAMP" />
18 19
   </resultMap>
19 20
   <sql id="Example_Where_Clause" >
20 21
     <where >
@@ -75,8 +76,8 @@
75 76
     </where>
76 77
   </sql>
77 78
   <sql id="Base_Column_List" >
78
-    id, keeper_id, dataType, type, occupation, college, department, education, degree, 
79
-    degree_detailed, rank, issue_facility, issue_time
79
+    id, keeper_id, dataType, type_s, occupation, college, department, education, degree, 
80
+    degree_detailed, rank_s, issue_facility, issue_time, updatetime
80 81
   </sql>
81 82
   <select id="selectByExample" resultMap="BaseResultMap" parameterType="com.chinaitop.depot.basic.model.BasicKeeperEducationExample" >
82 83
     select
@@ -110,15 +111,15 @@
110 111
   </delete>
111 112
   <insert id="insert" parameterType="com.chinaitop.depot.basic.model.BasicKeeperEducation" >
112 113
     insert into basic_keeper_education (id, keeper_id, dataType, 
113
-      type, occupation, college, 
114
+      type_s, occupation, college, 
114 115
       department, education, degree, 
115
-      degree_detailed, rank, issue_facility, 
116
-      issue_time)
116
+      degree_detailed, rank_s, issue_facility, 
117
+      issue_time, updatetime)
117 118
     values (#{id,jdbcType=INTEGER}, #{keeperId,jdbcType=INTEGER}, #{datatype,jdbcType=INTEGER}, 
118
-      #{type,jdbcType=INTEGER}, #{occupation,jdbcType=INTEGER}, #{college,jdbcType=VARCHAR}, 
119
+      #{typeS,jdbcType=INTEGER}, #{occupation,jdbcType=INTEGER}, #{college,jdbcType=VARCHAR}, 
119 120
       #{department,jdbcType=VARCHAR}, #{education,jdbcType=INTEGER}, #{degree,jdbcType=INTEGER}, 
120
-      #{degreeDetailed,jdbcType=INTEGER}, #{rank,jdbcType=INTEGER}, #{issueFacility,jdbcType=VARCHAR}, 
121
-      #{issueTime,jdbcType=TIMESTAMP})
121
+      #{degreeDetailed,jdbcType=INTEGER}, #{rankS,jdbcType=INTEGER}, #{issueFacility,jdbcType=VARCHAR}, 
122
+      #{issueTime,jdbcType=TIMESTAMP}, #{updatetime,jdbcType=TIMESTAMP})
122 123
   </insert>
123 124
   <insert id="insertSelective" parameterType="com.chinaitop.depot.basic.model.BasicKeeperEducation" >
124 125
     insert into basic_keeper_education
@@ -132,8 +133,8 @@
132 133
       <if test="datatype != null" >
133 134
         dataType,
134 135
       </if>
135
-      <if test="type != null" >
136
-        type,
136
+      <if test="typeS != null" >
137
+        type_s,
137 138
       </if>
138 139
       <if test="occupation != null" >
139 140
         occupation,
@@ -153,8 +154,8 @@
153 154
       <if test="degreeDetailed != null" >
154 155
         degree_detailed,
155 156
       </if>
156
-      <if test="rank != null" >
157
-        rank,
157
+      <if test="rankS != null" >
158
+        rank_s,
158 159
       </if>
159 160
       <if test="issueFacility != null" >
160 161
         issue_facility,
@@ -162,6 +163,9 @@
162 163
       <if test="issueTime != null" >
163 164
         issue_time,
164 165
       </if>
166
+      <if test="updatetime != null" >
167
+        updatetime,
168
+      </if>
165 169
     </trim>
166 170
     <trim prefix="values (" suffix=")" suffixOverrides="," >
167 171
       <if test="id != null" >
@@ -173,8 +177,8 @@
173 177
       <if test="datatype != null" >
174 178
         #{datatype,jdbcType=INTEGER},
175 179
       </if>
176
-      <if test="type != null" >
177
-        #{type,jdbcType=INTEGER},
180
+      <if test="typeS != null" >
181
+        #{typeS,jdbcType=INTEGER},
178 182
       </if>
179 183
       <if test="occupation != null" >
180 184
         #{occupation,jdbcType=INTEGER},
@@ -194,8 +198,8 @@
194 198
       <if test="degreeDetailed != null" >
195 199
         #{degreeDetailed,jdbcType=INTEGER},
196 200
       </if>
197
-      <if test="rank != null" >
198
-        #{rank,jdbcType=INTEGER},
201
+      <if test="rankS != null" >
202
+        #{rankS,jdbcType=INTEGER},
199 203
       </if>
200 204
       <if test="issueFacility != null" >
201 205
         #{issueFacility,jdbcType=VARCHAR},
@@ -203,6 +207,9 @@
203 207
       <if test="issueTime != null" >
204 208
         #{issueTime,jdbcType=TIMESTAMP},
205 209
       </if>
210
+      <if test="updatetime != null" >
211
+        #{updatetime,jdbcType=TIMESTAMP},
212
+      </if>
206 213
     </trim>
207 214
   </insert>
208 215
   <select id="countByExample" parameterType="com.chinaitop.depot.basic.model.BasicKeeperEducationExample" resultType="java.lang.Integer" >
@@ -223,8 +230,8 @@
223 230
       <if test="record.datatype != null" >
224 231
         dataType = #{record.datatype,jdbcType=INTEGER},
225 232
       </if>
226
-      <if test="record.type != null" >
227
-        type = #{record.type,jdbcType=INTEGER},
233
+      <if test="record.typeS != null" >
234
+        type_s = #{record.typeS,jdbcType=INTEGER},
228 235
       </if>
229 236
       <if test="record.occupation != null" >
230 237
         occupation = #{record.occupation,jdbcType=INTEGER},
@@ -244,8 +251,8 @@
244 251
       <if test="record.degreeDetailed != null" >
245 252
         degree_detailed = #{record.degreeDetailed,jdbcType=INTEGER},
246 253
       </if>
247
-      <if test="record.rank != null" >
248
-        rank = #{record.rank,jdbcType=INTEGER},
254
+      <if test="record.rankS != null" >
255
+        rank_s = #{record.rankS,jdbcType=INTEGER},
249 256
       </if>
250 257
       <if test="record.issueFacility != null" >
251 258
         issue_facility = #{record.issueFacility,jdbcType=VARCHAR},
@@ -253,6 +260,9 @@
253 260
       <if test="record.issueTime != null" >
254 261
         issue_time = #{record.issueTime,jdbcType=TIMESTAMP},
255 262
       </if>
263
+      <if test="record.updatetime != null" >
264
+        updatetime = #{record.updatetime,jdbcType=TIMESTAMP},
265
+      </if>
256 266
     </set>
257 267
     <if test="_parameter != null" >
258 268
       <include refid="Update_By_Example_Where_Clause" />
@@ -263,16 +273,17 @@
263 273
     set id = #{record.id,jdbcType=INTEGER},
264 274
       keeper_id = #{record.keeperId,jdbcType=INTEGER},
265 275
       dataType = #{record.datatype,jdbcType=INTEGER},
266
-      type = #{record.type,jdbcType=INTEGER},
276
+      type_s = #{record.typeS,jdbcType=INTEGER},
267 277
       occupation = #{record.occupation,jdbcType=INTEGER},
268 278
       college = #{record.college,jdbcType=VARCHAR},
269 279
       department = #{record.department,jdbcType=VARCHAR},
270 280
       education = #{record.education,jdbcType=INTEGER},
271 281
       degree = #{record.degree,jdbcType=INTEGER},
272 282
       degree_detailed = #{record.degreeDetailed,jdbcType=INTEGER},
273
-      rank = #{record.rank,jdbcType=INTEGER},
283
+      rank_s = #{record.rankS,jdbcType=INTEGER},
274 284
       issue_facility = #{record.issueFacility,jdbcType=VARCHAR},
275
-      issue_time = #{record.issueTime,jdbcType=TIMESTAMP}
285
+      issue_time = #{record.issueTime,jdbcType=TIMESTAMP},
286
+      updatetime = #{record.updatetime,jdbcType=TIMESTAMP}
276 287
     <if test="_parameter != null" >
277 288
       <include refid="Update_By_Example_Where_Clause" />
278 289
     </if>
@@ -286,8 +297,8 @@
286 297
       <if test="datatype != null" >
287 298
         dataType = #{datatype,jdbcType=INTEGER},
288 299
       </if>
289
-      <if test="type != null" >
290
-        type = #{type,jdbcType=INTEGER},
300
+      <if test="typeS != null" >
301
+        type_s = #{typeS,jdbcType=INTEGER},
291 302
       </if>
292 303
       <if test="occupation != null" >
293 304
         occupation = #{occupation,jdbcType=INTEGER},
@@ -307,8 +318,8 @@
307 318
       <if test="degreeDetailed != null" >
308 319
         degree_detailed = #{degreeDetailed,jdbcType=INTEGER},
309 320
       </if>
310
-      <if test="rank != null" >
311
-        rank = #{rank,jdbcType=INTEGER},
321
+      <if test="rankS != null" >
322
+        rank_s = #{rankS,jdbcType=INTEGER},
312 323
       </if>
313 324
       <if test="issueFacility != null" >
314 325
         issue_facility = #{issueFacility,jdbcType=VARCHAR},
@@ -316,6 +327,9 @@
316 327
       <if test="issueTime != null" >
317 328
         issue_time = #{issueTime,jdbcType=TIMESTAMP},
318 329
       </if>
330
+      <if test="updatetime != null" >
331
+        updatetime = #{updatetime,jdbcType=TIMESTAMP},
332
+      </if>
319 333
     </set>
320 334
     where id = #{id,jdbcType=INTEGER}
321 335
   </update>
@@ -323,16 +337,17 @@
323 337
     update basic_keeper_education
324 338
     set keeper_id = #{keeperId,jdbcType=INTEGER},
325 339
       dataType = #{datatype,jdbcType=INTEGER},
326
-      type = #{type,jdbcType=INTEGER},
340
+      type_s = #{typeS,jdbcType=INTEGER},
327 341
       occupation = #{occupation,jdbcType=INTEGER},
328 342
       college = #{college,jdbcType=VARCHAR},
329 343
       department = #{department,jdbcType=VARCHAR},
330 344
       education = #{education,jdbcType=INTEGER},
331 345
       degree = #{degree,jdbcType=INTEGER},
332 346
       degree_detailed = #{degreeDetailed,jdbcType=INTEGER},
333
-      rank = #{rank,jdbcType=INTEGER},
347
+      rank_s = #{rankS,jdbcType=INTEGER},
334 348
       issue_facility = #{issueFacility,jdbcType=VARCHAR},
335
-      issue_time = #{issueTime,jdbcType=TIMESTAMP}
349
+      issue_time = #{issueTime,jdbcType=TIMESTAMP},
350
+      updatetime = #{updatetime,jdbcType=TIMESTAMP}
336 351
     where id = #{id,jdbcType=INTEGER}
337 352
   </update>
338 353
 </mapper>

+ 32 - 14
depot-basic/src/main/java/com/chinaitop/depot/basic/model/BasicKeeperEducation.java

@@ -9,7 +9,7 @@ public class BasicKeeperEducation {
9 9
 
10 10
     private Integer datatype;
11 11
 
12
-    private Integer type;
12
+    private Integer typeS;
13 13
 
14 14
     private Integer occupation;
15 15
 
@@ -23,12 +23,14 @@ public class BasicKeeperEducation {
23 23
 
24 24
     private Integer degreeDetailed;
25 25
 
26
-    private Integer rank;
26
+    private Integer rankS;
27 27
 
28 28
     private String issueFacility;
29 29
 
30 30
     private Date issueTime;
31 31
 
32
+    private Date updatetime;
33
+
32 34
     /**
33 35
      * 
34 36
      * @return id 
@@ -79,18 +81,18 @@ public class BasicKeeperEducation {
79 81
 
80 82
     /**
81 83
      * 学历类型:0:全日制;1:在职教育;2:技术职称;3:职业资格
82
-     * @return type 学历类型:0:全日制;1:在职教育;2:技术职称;3:职业资格
84
+     * @return type_s 学历类型:0:全日制;1:在职教育;2:技术职称;3:职业资格
83 85
      */
84
-    public Integer getType() {
85
-        return type;
86
+    public Integer getTypeS() {
87
+        return typeS;
86 88
     }
87 89
 
88 90
     /**
89 91
      * 学历类型:0:全日制;1:在职教育;2:技术职称;3:职业资格
90
-     * @param type 学历类型:0:全日制;1:在职教育;2:技术职称;3:职业资格
92
+     * @param typeS 学历类型:0:全日制;1:在职教育;2:技术职称;3:职业资格
91 93
      */
92
-    public void setType(Integer type) {
93
-        this.type = type;
94
+    public void setTypeS(Integer typeS) {
95
+        this.typeS = typeS;
94 96
     }
95 97
 
96 98
     /**
@@ -191,18 +193,18 @@ public class BasicKeeperEducation {
191 193
 
192 194
     /**
193 195
      * 等级
194
-     * @return rank 等级
196
+     * @return rank_s 等级
195 197
      */
196
-    public Integer getRank() {
197
-        return rank;
198
+    public Integer getRankS() {
199
+        return rankS;
198 200
     }
199 201
 
200 202
     /**
201 203
      * 等级
202
-     * @param rank 等级
204
+     * @param rankS 等级
203 205
      */
204
-    public void setRank(Integer rank) {
205
-        this.rank = rank;
206
+    public void setRankS(Integer rankS) {
207
+        this.rankS = rankS;
206 208
     }
207 209
 
208 210
     /**
@@ -236,4 +238,20 @@ public class BasicKeeperEducation {
236 238
     public void setIssueTime(Date issueTime) {
237 239
         this.issueTime = issueTime;
238 240
     }
241
+
242
+    /**
243
+     * 
244
+     * @return updatetime 
245
+     */
246
+    public Date getUpdatetime() {
247
+        return updatetime;
248
+    }
249
+
250
+    /**
251
+     * 
252
+     * @param updatetime 
253
+     */
254
+    public void setUpdatetime(Date updatetime) {
255
+        this.updatetime = updatetime;
256
+    }
239 257
 }

+ 110 - 50
depot-basic/src/main/java/com/chinaitop/depot/basic/model/BasicKeeperEducationExample.java

@@ -74,7 +74,7 @@ public class BasicKeeperEducationExample {
74 74
     }
75 75
 
76 76
     /**
77
-     * basic_keeper_education 2017-11-21
77
+     * basic_keeper_education 2022-04-14
78 78
      */
79 79
     protected abstract static class GeneratedCriteria {
80 80
         protected List<Criterion> criteria;
@@ -297,63 +297,63 @@ public class BasicKeeperEducationExample {
297 297
             return (Criteria) this;
298 298
         }
299 299
 
300
-        public Criteria andTypeIsNull() {
301
-            addCriterion("type is null");
300
+        public Criteria andTypeSIsNull() {
301
+            addCriterion("type_s is null");
302 302
             return (Criteria) this;
303 303
         }
304 304
 
305
-        public Criteria andTypeIsNotNull() {
306
-            addCriterion("type is not null");
305
+        public Criteria andTypeSIsNotNull() {
306
+            addCriterion("type_s is not null");
307 307
             return (Criteria) this;
308 308
         }
309 309
 
310
-        public Criteria andTypeEqualTo(Integer value) {
311
-            addCriterion("type =", value, "type");
310
+        public Criteria andTypeSEqualTo(Integer value) {
311
+            addCriterion("type_s =", value, "typeS");
312 312
             return (Criteria) this;
313 313
         }
314 314
 
315
-        public Criteria andTypeNotEqualTo(Integer value) {
316
-            addCriterion("type <>", value, "type");
315
+        public Criteria andTypeSNotEqualTo(Integer value) {
316
+            addCriterion("type_s <>", value, "typeS");
317 317
             return (Criteria) this;
318 318
         }
319 319
 
320
-        public Criteria andTypeGreaterThan(Integer value) {
321
-            addCriterion("type >", value, "type");
320
+        public Criteria andTypeSGreaterThan(Integer value) {
321
+            addCriterion("type_s >", value, "typeS");
322 322
             return (Criteria) this;
323 323
         }
324 324
 
325
-        public Criteria andTypeGreaterThanOrEqualTo(Integer value) {
326
-            addCriterion("type >=", value, "type");
325
+        public Criteria andTypeSGreaterThanOrEqualTo(Integer value) {
326
+            addCriterion("type_s >=", value, "typeS");
327 327
             return (Criteria) this;
328 328
         }
329 329
 
330
-        public Criteria andTypeLessThan(Integer value) {
331
-            addCriterion("type <", value, "type");
330
+        public Criteria andTypeSLessThan(Integer value) {
331
+            addCriterion("type_s <", value, "typeS");
332 332
             return (Criteria) this;
333 333
         }
334 334
 
335
-        public Criteria andTypeLessThanOrEqualTo(Integer value) {
336
-            addCriterion("type <=", value, "type");
335
+        public Criteria andTypeSLessThanOrEqualTo(Integer value) {
336
+            addCriterion("type_s <=", value, "typeS");
337 337
             return (Criteria) this;
338 338
         }
339 339
 
340
-        public Criteria andTypeIn(List<Integer> values) {
341
-            addCriterion("type in", values, "type");
340
+        public Criteria andTypeSIn(List<Integer> values) {
341
+            addCriterion("type_s in", values, "typeS");
342 342
             return (Criteria) this;
343 343
         }
344 344
 
345
-        public Criteria andTypeNotIn(List<Integer> values) {
346
-            addCriterion("type not in", values, "type");
345
+        public Criteria andTypeSNotIn(List<Integer> values) {
346
+            addCriterion("type_s not in", values, "typeS");
347 347
             return (Criteria) this;
348 348
         }
349 349
 
350
-        public Criteria andTypeBetween(Integer value1, Integer value2) {
351
-            addCriterion("type between", value1, value2, "type");
350
+        public Criteria andTypeSBetween(Integer value1, Integer value2) {
351
+            addCriterion("type_s between", value1, value2, "typeS");
352 352
             return (Criteria) this;
353 353
         }
354 354
 
355
-        public Criteria andTypeNotBetween(Integer value1, Integer value2) {
356
-            addCriterion("type not between", value1, value2, "type");
355
+        public Criteria andTypeSNotBetween(Integer value1, Integer value2) {
356
+            addCriterion("type_s not between", value1, value2, "typeS");
357 357
             return (Criteria) this;
358 358
         }
359 359
 
@@ -737,63 +737,63 @@ public class BasicKeeperEducationExample {
737 737
             return (Criteria) this;
738 738
         }
739 739
 
740
-        public Criteria andRankIsNull() {
741
-            addCriterion("rank is null");
740
+        public Criteria andRankSIsNull() {
741
+            addCriterion("rank_s is null");
742 742
             return (Criteria) this;
743 743
         }
744 744
 
745
-        public Criteria andRankIsNotNull() {
746
-            addCriterion("rank is not null");
745
+        public Criteria andRankSIsNotNull() {
746
+            addCriterion("rank_s is not null");
747 747
             return (Criteria) this;
748 748
         }
749 749
 
750
-        public Criteria andRankEqualTo(Integer value) {
751
-            addCriterion("rank =", value, "rank");
750
+        public Criteria andRankSEqualTo(Integer value) {
751
+            addCriterion("rank_s =", value, "rankS");
752 752
             return (Criteria) this;
753 753
         }
754 754
 
755
-        public Criteria andRankNotEqualTo(Integer value) {
756
-            addCriterion("rank <>", value, "rank");
755
+        public Criteria andRankSNotEqualTo(Integer value) {
756
+            addCriterion("rank_s <>", value, "rankS");
757 757
             return (Criteria) this;
758 758
         }
759 759
 
760
-        public Criteria andRankGreaterThan(Integer value) {
761
-            addCriterion("rank >", value, "rank");
760
+        public Criteria andRankSGreaterThan(Integer value) {
761
+            addCriterion("rank_s >", value, "rankS");
762 762
             return (Criteria) this;
763 763
         }
764 764
 
765
-        public Criteria andRankGreaterThanOrEqualTo(Integer value) {
766
-            addCriterion("rank >=", value, "rank");
765
+        public Criteria andRankSGreaterThanOrEqualTo(Integer value) {
766
+            addCriterion("rank_s >=", value, "rankS");
767 767
             return (Criteria) this;
768 768
         }
769 769
 
770
-        public Criteria andRankLessThan(Integer value) {
771
-            addCriterion("rank <", value, "rank");
770
+        public Criteria andRankSLessThan(Integer value) {
771
+            addCriterion("rank_s <", value, "rankS");
772 772
             return (Criteria) this;
773 773
         }
774 774
 
775
-        public Criteria andRankLessThanOrEqualTo(Integer value) {
776
-            addCriterion("rank <=", value, "rank");
775
+        public Criteria andRankSLessThanOrEqualTo(Integer value) {
776
+            addCriterion("rank_s <=", value, "rankS");
777 777
             return (Criteria) this;
778 778
         }
779 779
 
780
-        public Criteria andRankIn(List<Integer> values) {
781
-            addCriterion("rank in", values, "rank");
780
+        public Criteria andRankSIn(List<Integer> values) {
781
+            addCriterion("rank_s in", values, "rankS");
782 782
             return (Criteria) this;
783 783
         }
784 784
 
785
-        public Criteria andRankNotIn(List<Integer> values) {
786
-            addCriterion("rank not in", values, "rank");
785
+        public Criteria andRankSNotIn(List<Integer> values) {
786
+            addCriterion("rank_s not in", values, "rankS");
787 787
             return (Criteria) this;
788 788
         }
789 789
 
790
-        public Criteria andRankBetween(Integer value1, Integer value2) {
791
-            addCriterion("rank between", value1, value2, "rank");
790
+        public Criteria andRankSBetween(Integer value1, Integer value2) {
791
+            addCriterion("rank_s between", value1, value2, "rankS");
792 792
             return (Criteria) this;
793 793
         }
794 794
 
795
-        public Criteria andRankNotBetween(Integer value1, Integer value2) {
796
-            addCriterion("rank not between", value1, value2, "rank");
795
+        public Criteria andRankSNotBetween(Integer value1, Integer value2) {
796
+            addCriterion("rank_s not between", value1, value2, "rankS");
797 797
             return (Criteria) this;
798 798
         }
799 799
 
@@ -926,6 +926,66 @@ public class BasicKeeperEducationExample {
926 926
             addCriterion("issue_time not between", value1, value2, "issueTime");
927 927
             return (Criteria) this;
928 928
         }
929
+
930
+        public Criteria andUpdatetimeIsNull() {
931
+            addCriterion("updatetime is null");
932
+            return (Criteria) this;
933
+        }
934
+
935
+        public Criteria andUpdatetimeIsNotNull() {
936
+            addCriterion("updatetime is not null");
937
+            return (Criteria) this;
938
+        }
939
+
940
+        public Criteria andUpdatetimeEqualTo(Date value) {
941
+            addCriterion("updatetime =", value, "updatetime");
942
+            return (Criteria) this;
943
+        }
944
+
945
+        public Criteria andUpdatetimeNotEqualTo(Date value) {
946
+            addCriterion("updatetime <>", value, "updatetime");
947
+            return (Criteria) this;
948
+        }
949
+
950
+        public Criteria andUpdatetimeGreaterThan(Date value) {
951
+            addCriterion("updatetime >", value, "updatetime");
952
+            return (Criteria) this;
953
+        }
954
+
955
+        public Criteria andUpdatetimeGreaterThanOrEqualTo(Date value) {
956
+            addCriterion("updatetime >=", value, "updatetime");
957
+            return (Criteria) this;
958
+        }
959
+
960
+        public Criteria andUpdatetimeLessThan(Date value) {
961
+            addCriterion("updatetime <", value, "updatetime");
962
+            return (Criteria) this;
963
+        }
964
+
965
+        public Criteria andUpdatetimeLessThanOrEqualTo(Date value) {
966
+            addCriterion("updatetime <=", value, "updatetime");
967
+            return (Criteria) this;
968
+        }
969
+
970
+        public Criteria andUpdatetimeIn(List<Date> values) {
971
+            addCriterion("updatetime in", values, "updatetime");
972
+            return (Criteria) this;
973
+        }
974
+
975
+        public Criteria andUpdatetimeNotIn(List<Date> values) {
976
+            addCriterion("updatetime not in", values, "updatetime");
977
+            return (Criteria) this;
978
+        }
979
+
980
+        public Criteria andUpdatetimeBetween(Date value1, Date value2) {
981
+            addCriterion("updatetime between", value1, value2, "updatetime");
982
+            return (Criteria) this;
983
+        }
984
+
985
+        public Criteria andUpdatetimeNotBetween(Date value1, Date value2) {
986
+            addCriterion("updatetime not between", value1, value2, "updatetime");
987
+            return (Criteria) this;
988
+        }
929 989
     }
930 990
 
931 991
     /**
@@ -939,7 +999,7 @@ public class BasicKeeperEducationExample {
939 999
     }
940 1000
 
941 1001
     /**
942
-     * basic_keeper_education 2017-11-21
1002
+     * basic_keeper_education 2022-04-14
943 1003
      */
944 1004
     public static class Criterion {
945 1005
         private String condition;