select id, apply_num, apply_reason, sub_id, apply_status, user_id, create_by, create_time, update_by, update_time, remark from act_hxpapply
select t.id, t.apply_num, t.apply_reason, t.sub_id, t.apply_status, t.user_id, t.create_by, t.create_time, t.update_by, t.update_time, t.remark from act_hxpapply as t
insert into act_hxpapply
apply_num,
apply_reason,
sub_id,
apply_status,
user_id,
create_by,
create_time,
update_by,
update_time,
remark,
#{applyNum},
#{applyReason},
#{subId},
#{applyStatus},
#{userId},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update act_hxpapply
apply_num = #{applyNum},
apply_reason = #{applyReason},
sub_id = #{subId},
apply_status = #{applyStatus},
user_id = #{userId},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where id = #{id}
delete from act_hxpapply where id = #{id}
delete from act_hxpapply where id in
#{id}