|
@@ -18,7 +18,7 @@
|
|
|
<result property="createBy" column="create_by" jdbcType="INTEGER"/>
|
|
|
<result property="updateBy" column="update_by" jdbcType="INTEGER"/>
|
|
|
<result property="callState" column="call_state" jdbcType="INTEGER"/>
|
|
|
- <result property="transferProgress" column="transfer_progress" jdbcType="INTEGER"/>
|
|
|
+ <result property="transferProgress" column="transfer_progress" jdbcType="DECIMAL"/>
|
|
|
</resultMap>
|
|
|
<sql id="BASE_SQL">
|
|
|
id,
|
|
@@ -149,7 +149,10 @@
|
|
|
time_granularity = #{timeGranularity,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
<if test="updateBy != null">
|
|
|
- update_by = #{updateBy,jdbcType=INTEGER}
|
|
|
+ update_by = #{updateBy,jdbcType=INTEGER},
|
|
|
+ </if>
|
|
|
+ <if test="transferProgress != null">
|
|
|
+ transfer_progress = #{transferProgress,jdbcType=DECIMAL}
|
|
|
</if>
|
|
|
</set>
|
|
|
where batch_code = #{batchCode,jdbcType=VARCHAR}
|