id, order_id, cus_id, pause_start_date, pause_end_date, reason, remarks, create_time, create_by, update_time, update_by, del_flag
select id, order_id, cus_id, pause_start_date, pause_end_date, reason, remarks, create_time, create_by, update_time, update_by, del_flag from sys_recipes_pause sop
insert into sys_recipes_pause
order_id,
cus_id,
pause_start_date,
pause_end_date,
reason,
remarks,
create_time,
create_by,
update_time,
update_by,
del_flag,
#{orderId},
#{cusId},
#{pauseStartDate},
#{pauseEndDate},
#{reason},
#{remarks},
#{createTime},
#{createBy},
#{updateTime},
#{updateBy},
#{delFlag},
update sys_recipes_pause
order_id = #{orderId},
cus_id = #{cusId},
pause_start_date = #{pauseStartDate},
pause_end_date = #{pauseEndDate},
reason = #{reason},
remarks = #{remarks},
create_time = #{createTime},
create_by = #{createBy},
update_time = #{updateTime},
update_by = #{updateBy},
del_flag = #{delFlag},
where id = #{id}
update sys_recipes_pause set del_flag = 1 where id = #{id}
update sys_recipes_pause set del_flag = 1 where id in
#{id}
update sys_recipes_pause set del_flag = 1 where order_id in
#{orderId}