select id, start, stop, week_day, plan_id
from zlm_record_plan_item
insert into zlm_record_plan_item
start,stop,week_day,plan_id,#{start},#{stop},#{weekDay},#{planId},
insert into zlm_record_plan_item(start,stop,week_day,plan_id)
values
(#{item.start},#{item.stop},#{item.weekDay},#{planId})
update zlm_record_plan_item
start = #{start},stop = #{stop},week_day = #{weekDay},plan_id = #{planId},
where id = #{id}
delete
from zlm_record_plan_item
where id = #{id}
delete from zlm_record_plan_item where id in
#{id}
delete from zlm_record_plan_item where plan_id = #{planId}