select schedule_id, number, type, cycle, station, status, is_timeout, name, source, content, start_time, end_time, first_reminder, second_reminder, operator, commencement_time, terminator, resolution_time, resolution_content, prepared_by, head, remark, create_by, create_time, update_by, update_time,tenant_id from schedule
insert into schedule
schedule_id,
number,
type,
cycle,
station,
status,
is_timeout,
name,
source,
content,
start_time,
end_time,
first_reminder,
second_reminder,
operator,
commencement_time,
terminator,
resolution_time,
resolution_content,
prepared_by,
head,
remark,
create_by,
create_time,
update_by,
update_time,
tenant_id,
#{scheduleId},
#{number},
#{type},
#{cycle},
#{station},
#{status},
#{isTimeout},
#{name},
#{source},
#{content},
#{startTime},
#{endTime},
#{firstReminder},
#{secondReminder},
#{operator},
#{commencementTime},
#{terminator},
#{resolutionTime},
#{resolutionContent},
#{preparedBy},
#{head},
#{remark},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{tenantId},
update schedule
number = #{number},
type = #{type},
cycle = #{cycle},
station = #{station},
status = #{status},
is_timeout = #{isTimeout},
name = #{name},
source = #{source},
content = #{content},
start_time = #{startTime},
end_time = #{endTime},
first_reminder = #{firstReminder},
second_reminder = #{secondReminder},
operator = #{operator},
commencement_time = #{commencementTime},
terminator = #{terminator},
resolution_time = #{resolutionTime},
resolution_content = #{resolutionContent},
prepared_by = #{preparedBy},
head = #{head},
remark = #{remark},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
tenant_id = #{tenantId},
where schedule_id = #{scheduleId}
delete from schedule where schedule_id = #{scheduleId}
delete from schedule where schedule_id in
#{scheduleId}