id, settleno, policyno, commission, checkflag
delete
from ins_settle_detail
where id = #{id,jdbcType=BIGINT}
insert into ins_settle_detail (id, settleno, policyno,
commission, checkflag)
values (#{id,jdbcType=BIGINT}, #{settleno,jdbcType=VARCHAR}, #{policyno,jdbcType=VARCHAR},
#{commission,jdbcType=DECIMAL}, #{checkflag,jdbcType=CHAR})
insert into ins_settle_detail
id,
settleno,
policyno,
commission,
checkflag,
#{id,jdbcType=BIGINT},
#{settleno,jdbcType=VARCHAR},
#{policyno,jdbcType=VARCHAR},
#{commission,jdbcType=DECIMAL},
#{checkflag,jdbcType=CHAR},
insert into ins_settle_detail (
)
values
(#{item.id}, #{item.settleno}, #{item.policyno}, #{item.commission}, #{item.checkflag})
update ins_settle_detail
settleno = #{settleno,jdbcType=VARCHAR},
policyno = #{policyno,jdbcType=VARCHAR},
commission = #{commission,jdbcType=DECIMAL},
checkflag = #{checkflag,jdbcType=CHAR},
where id = #{id,jdbcType=BIGINT}
update ins_settle_detail
set settleno = #{settleno,jdbcType=VARCHAR},
policyno = #{policyno,jdbcType=VARCHAR},
commission = #{commission,jdbcType=DECIMAL},
checkflag = #{checkflag,jdbcType=CHAR}
where id = #{id,jdbcType=BIGINT}