select id, stake_mark stakeMark, direction, dept_id deptId,
warning_state warningState,vehicle_type vehicleType,
DATE_FORMAT(warning_time,'%Y-%m-%d %H:%m:%s')warningTime,
user_id userId, warning_source warningSource, warning_level warningLevel,
remark, DATE_FORMAT(create_time,'%Y-%m-%d %H:%m:%s')createTime,
DATE_FORMAT(update_time,'%Y-%m-%d %H:%m:%s')updateTime,
warning_type warningType, warning_subclass warningSubclass, warning_title warningTitle,
other_config otherConfig, lane from dc_warning
insert into dc_warning
id,
stake_mark,
direction,
dept_id,
warning_state,
warning_time,
user_id,
warning_source,
warning_level,
remark,
create_time,
update_time,
warning_type,
warning_subclass,
warning_title,
other_config,
lane,
vehicle_type,
#{id},
#{stakeMark},
#{direction},
#{deptId},
#{warningState},
#{warningTime},
#{userId},
#{warningSource},
#{warningLevel},
#{remark},
#{createTime},
#{updateTime},
#{warningType},
#{warningSubclass},
#{warningTitle},
#{otherConfig},
#{lane},
#{vehicleType},
update dc_warning
stake_mark = #{stakeMark},
direction = #{direction},
dept_id = #{deptId},
warning_state = #{warningState},
warning_time = #{warningTime},
user_id = #{userId},
warning_source = #{warningSource},
warning_level = #{warningLevel},
remark = #{remark},
create_time = #{createTime},
update_time = #{updateTime},
warning_type = #{warningType},
warning_subclass = #{warningSubclass},
warning_title = #{warningTitle},
other_config = #{otherConfig},
lane = #{lane},
vehicle_type = #{vehicleType},
where id = #{id}
update dc_warning set warning_state=2 where id=#{id}
delete from dc_warning where id = #{id}
delete from dc_warning where id in
#{id}