delete
from blade_production_calendar_day
where calendar_id = #{id}
and calendar_date > #{localDate}
insert into blade_production_calendar_day
(id,calendar_id,calendar_date,start_time,end_time,model_id,is_deleted,week,month
,year,is_high_priority,is_off_day,off_id)
values
(
#{item.id},
#{item.calendarId},
#{item.calendarDate},
#{item.startTime},
#{item.endTime},
#{item.modelId},
#{item.isDeleted},
#{item.week},
#{item.month},
#{item.year},
#{item.isHighPriority},
#{item.isOffDay},
#{item.offId}
)