fix-bug : enterTime model 为long ,更新时把入驻时间都更新为0了
Showing
1 changed file
with
4 additions
and
0 deletions
@@ -167,12 +167,16 @@ | @@ -167,12 +167,16 @@ | ||
167 | <if test="certNo != null"> | 167 | <if test="certNo != null"> |
168 | cert_no = #{certNo,jdbcType=VARCHAR}, | 168 | cert_no = #{certNo,jdbcType=VARCHAR}, |
169 | </if> | 169 | </if> |
170 | + <!-- | ||
171 | + fix-bug : enterTime model 为long ,更新时把入驻时间都更新为0了 | ||
172 | + 因此去掉这两项更新 | ||
170 | <if test="enterTime != null"> | 173 | <if test="enterTime != null"> |
171 | enter_time = #{enterTime,jdbcType=INTEGER}, | 174 | enter_time = #{enterTime,jdbcType=INTEGER}, |
172 | </if> | 175 | </if> |
173 | <if test="quitTime != null"> | 176 | <if test="quitTime != null"> |
174 | quit_time = #{quitTime,jdbcType=INTEGER}, | 177 | quit_time = #{quitTime,jdbcType=INTEGER}, |
175 | </if> | 178 | </if> |
179 | + --> | ||
176 | <if test="operatorUid != null"> | 180 | <if test="operatorUid != null"> |
177 | operator_uid = #{operatorUid,jdbcType=INTEGER}, | 181 | operator_uid = #{operatorUid,jdbcType=INTEGER}, |
178 | </if> | 182 | </if> |
-
Please register or login to post a comment