id, channel_id, channel_desc, app_time, channel_status, daily_limit
delete from alipay_channel_record
where id = #{id,jdbcType=BIGINT}
insert into alipay_channel_record (id, channel_id, channel_desc,
app_time, channel_status, daily_limit
)
values (#{id,jdbcType=BIGINT}, #{channelId,jdbcType=VARCHAR}, #{channelDesc,jdbcType=VARCHAR},
#{appTime,jdbcType=TIMESTAMP}, #{channelStatus,jdbcType=VARCHAR}, #{dailyLimit,jdbcType=DECIMAL}
)
insert into alipay_channel_record
id,
channel_id,
channel_desc,
app_time,
channel_status,
daily_limit,
#{id,jdbcType=BIGINT},
#{channelId,jdbcType=VARCHAR},
#{channelDesc,jdbcType=VARCHAR},
#{appTime,jdbcType=TIMESTAMP},
#{channelStatus,jdbcType=VARCHAR},
#{dailyLimit,jdbcType=DECIMAL},
update alipay_channel_record
channel_id = #{channelId,jdbcType=VARCHAR},
channel_desc = #{channelDesc,jdbcType=VARCHAR},
app_time = #{appTime,jdbcType=TIMESTAMP},
channel_status = #{channelStatus,jdbcType=VARCHAR},
daily_limit = #{dailyLimit,jdbcType=DECIMAL},
where id = #{id,jdbcType=BIGINT}
update alipay_channel_record
set channel_id = #{channelId,jdbcType=VARCHAR},
channel_desc = #{channelDesc,jdbcType=VARCHAR},
app_time = #{appTime,jdbcType=TIMESTAMP},
channel_status = #{channelStatus,jdbcType=VARCHAR},
daily_limit = #{dailyLimit,jdbcType=DECIMAL}
where id = #{id,jdbcType=BIGINT}