Authored by qinchao

fix-bug : enterTime model 为long ,更新时把入驻时间都更新为0了

... ... @@ -167,12 +167,16 @@
<if test="certNo != null">
cert_no = #{certNo,jdbcType=VARCHAR},
</if>
<!--
fix-bug : enterTime model 为long ,更新时把入驻时间都更新为0了
因此去掉这两项更新
<if test="enterTime != null">
enter_time = #{enterTime,jdbcType=INTEGER},
</if>
<if test="quitTime != null">
quit_time = #{quitTime,jdbcType=INTEGER},
</if>
-->
<if test="operatorUid != null">
operator_uid = #{operatorUid,jdbcType=INTEGER},
</if>
... ...