select id, parent_id, type, start_time, stop_time, effecticity_price, create_by, create_time, update_by, update_time, remark from electricity_price
insert into electricity_price
id,
parent_id,
type,
start_time,
stop_time,
effecticity_price,
create_by,
create_time,
update_by,
update_time,
remark,
#{id},
#{parentId},
#{type},
#{startTime},
#{stopTime},
#{effecticityPrice},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{remark},
update electricity_price
parent_id = #{parentId},
type = #{type},
start_time = #{startTime},
stop_time = #{stopTime},
effecticity_price = #{effecticityPrice},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
remark = #{remark},
where id = #{id}
delete from electricity_price where id = #{id}
delete from electricity_price where id in
#{id}