select fperiod, bill_name, iteration_value, next_value, remark from sys_bill_no
insert into sys_bill_no
fperiod,
bill_name,
iteration_value,
next_value,
remark,
#{fperiod},
#{billName},
#{iterationValue},
#{nextValue},
#{remark},
update sys_bill_no
bill_name = #{billName},
iteration_value = #{iterationValue},
next_value = #{nextValue},
remark = #{remark},
where fperiod = #{fperiod}
delete from sys_bill_no where fperiod = #{fperiod}
delete from sys_bill_no where fperiod in
#{fperiod}