t.line_id,
t.line_name,
t.line_sddj,
t.line_type,
t.line_dj,
t.line_yylc,
t.start_marker,
t.end_marker,
t.order_num,
t.del_flag,
t.create_by,
t.create_time,
t.update_by,
t.update_time
INSERT INTO base_line
line_name,
line_sddj,
line_type,
line_dj,
line_yylc,
start_marker,
end_marker,
order_num,
del_flag,
create_by,
create_time,
update_by,
update_time
#{lineName},
#{lineSddj},
#{lineType},
#{lineDj},
#{lineYylc},
#{startMarker},
#{endMarker},
#{orderNum},
#{delFlag},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime}
UPDATE base_line
set del_flag='1'
WHERE line_id = #{lineId}
UPDATE base_line
line_name = #{lineName},
line_sddj = #{lineSddj},
line_type = #{lineType},
line_dj = #{lineDj},
line_yylc = #{lineYylc},
start_marker = #{startMarker},
end_marker = #{endMarker},
order_num = #{orderNum},
del_flag = #{delFlag},
update_by = #{updateBy},
update_time = #{updateTime}
WHERE line_id = #{lineId}