mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
站点信息表新增对接高德的 运营商品牌 和 站点名称描述 字段
This commit is contained in:
@@ -29,6 +29,8 @@
|
||||
<result property="stationLng" column="station_lng" />
|
||||
<result property="stationLat" column="station_lat" />
|
||||
<result property="siteGuide" column="site_guide" />
|
||||
<result property="operatorName" column="operator_name" />
|
||||
<result property="aMapStationName" column="amap_station_name" />
|
||||
<result property="construction" column="construction" />
|
||||
<result property="pictures" column="pictures" />
|
||||
<result property="matchCars" column="match_cars" />
|
||||
@@ -62,7 +64,7 @@
|
||||
<sql id="Base_Column_List">
|
||||
id,merchant_id, station_name, dept_id, parking_id, qrcode_prefix, alone_apply, account_number, capacity, public_parking, parking_number,
|
||||
park_fee_describe, country_code, area_code, address, station_tel, service_tel, station_type, station_status, station_admin_name, park_nums,
|
||||
station_lng, station_lat, site_guide, construction, pictures, match_cars, park_info, park_owner,
|
||||
station_lng, station_lat, site_guide, operator_name, amap_station_name, construction, pictures, match_cars, park_info, park_owner,
|
||||
park_manager, open_all_day, business_hours, park_free, payment, support_order, remark, public_flag, amap_flag,
|
||||
open_flag, toilet_flag, store_flag, restaurant_flag, lounge_flag, canopy_flag, printer_flag, barrier_flag,
|
||||
parking_lock_flag, create_by, create_time, update_by, update_time, del_flag
|
||||
@@ -98,6 +100,8 @@
|
||||
<if test="stationLng != null and stationLng != ''"> and station_lng = #{stationLng}</if>
|
||||
<if test="stationLat != null and stationLat != ''"> and station_lat = #{stationLat}</if>
|
||||
<if test="siteGuide != null and siteGuide != ''"> and site_guide = #{siteGuide}</if>
|
||||
<if test="operatorName != null and operatorName != ''"> and operator_name = #{operatorName}</if>
|
||||
<if test="aMapStationName != null and aMapStationName != ''"> and amap_station_name = #{aMapStationName}</if>
|
||||
<if test="construction != null and construction != ''"> and construction = #{construction}</if>
|
||||
<if test="pictures != null and pictures != ''"> and pictures = #{pictures}</if>
|
||||
<if test="matchCars != null and matchCars != ''"> and match_cars = #{matchCars}</if>
|
||||
@@ -156,6 +160,8 @@
|
||||
<if test="stationLng != null">station_lng,</if>
|
||||
<if test="stationLat != null">station_lat,</if>
|
||||
<if test="siteGuide != null">site_guide,</if>
|
||||
<if test="operatorName != null">operator_name,</if>
|
||||
<if test="aMapStationName != null">amap_station_name,</if>
|
||||
<if test="construction != null">construction,</if>
|
||||
<if test="pictures != null">pictures,</if>
|
||||
<if test="matchCars != null">match_cars,</if>
|
||||
@@ -210,6 +216,8 @@
|
||||
<if test="stationLng != null">#{stationLng},</if>
|
||||
<if test="stationLat != null">#{stationLat},</if>
|
||||
<if test="siteGuide != null">#{siteGuide},</if>
|
||||
<if test="operatorName != null">#{operatorName},</if>
|
||||
<if test="aMapStationName != null">#{aMapStationName},</if>
|
||||
<if test="construction != null">#{construction},</if>
|
||||
<if test="pictures != null">#{pictures},</if>
|
||||
<if test="matchCars != null">#{matchCars},</if>
|
||||
@@ -267,6 +275,8 @@
|
||||
<if test="stationLng != null">station_lng = #{stationLng},</if>
|
||||
<if test="stationLat != null">station_lat = #{stationLat},</if>
|
||||
<if test="siteGuide != null">site_guide = #{siteGuide},</if>
|
||||
<if test="operatorName != null">operator_name = #{operatorName},</if>
|
||||
<if test="aMapStationName != null">amap_station_name = #{aMapStationName},</if>
|
||||
<if test="construction != null">construction = #{construction},</if>
|
||||
<if test="pictures != null">pictures = #{pictures},</if>
|
||||
<if test="matchCars != null">match_cars = #{matchCars},</if>
|
||||
|
||||
Reference in New Issue
Block a user