select hospital_id, hospital_name, hospital_type, hospital_level, descs, img_url, city_ids, province, city, district, address, lng, lat, status, remark, seal_url, phone from fs_hospital
insert into fs_hospital
hospital_name,
hospital_type,
hospital_level,
descs,
img_url,
city_ids,
province,
city,
district,
address,
lng,
lat,
status,
remark,
seal_url,
phone,
#{hospitalName},
#{hospitalType},
#{hospitalLevel},
#{descs},
#{imgUrl},
#{cityIds},
#{province},
#{city},
#{district},
#{address},
#{lng},
#{lat},
#{status},
#{remark},
#{sealUrl},
#{phone},
update fs_hospital
hospital_name = #{hospitalName},
hospital_type = #{hospitalType},
hospital_level = #{hospitalLevel},
descs = #{descs},
img_url = #{imgUrl},
city_ids = #{cityIds},
province = #{province},
city = #{city},
district = #{district},
address = #{address},
lng = #{lng},
lat = #{lat},
status = #{status},
remark = #{remark},
seal_url = #{sealUrl},
phone = #{phone},
where hospital_id = #{hospitalId}
delete from fs_hospital where hospital_id = #{hospitalId}
delete from fs_hospital where hospital_id in
#{hospitalId}