select id, create_time, create_by, update_time, update_by, pay_time, price, address, type, reason, user_id, pet_id from applet_order
insert into applet_order
create_time,
create_by,
update_time,
update_by,
pay_time,
price,
address,
type,
reason,
user_id,
pet_id,
#{createTime},
#{createBy},
#{updateTime},
#{updateBy},
#{payTime},
#{price},
#{address},
#{type},
#{reason},
#{userId},
#{petId},
update applet_order
create_time = #{createTime},
create_by = #{createBy},
update_time = #{updateTime},
update_by = #{updateBy},
pay_time = #{payTime},
price = #{price},
address = #{address},
type = #{type},
reason = #{reason},
user_id = #{userId},
pet_id = #{petId},
where id = #{id}
delete from applet_order where id = #{id}
delete from applet_order where id in
#{id}