select id, location_code, location_name, location_type, line_code, remarks, create_by, create_time, update_by, update_time, del_flag from bs_location_info
insert into bs_location_info
id,
location_code,
location_name,
location_type,
line_code,
remarks,
create_by,
create_time,
update_by,
update_time,
del_flag,
#{id},
#{locationCode},
#{locationName},
#{locationType},
#{lineCode},
#{remarks},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
#{delFlag},
update bs_location_info
location_code = #{locationCode},
location_name = #{locationName},
location_type = #{locationType},
line_code = #{lineCode},
remarks = #{remarks},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
del_flag = #{delFlag},
where id = #{id}
delete from bs_location_info where id = #{id}
delete from bs_location_info where id in
#{id}