|
|
@@ -17,6 +17,8 @@
|
|
|
<result column="dept_station_id" property="deptStationId"/>
|
|
|
<result column="pillar_code" property="pillarCode"/>
|
|
|
<result column="marker" property="marker"/>
|
|
|
+ <result column="start_marker" property="startMarker"/>
|
|
|
+ <result column="end_marker" property="endMarker"/>
|
|
|
<result column="count" property="count"/>
|
|
|
<result column="distance_horizontal" property="distanceHorizontal"/>
|
|
|
<result column="distance_vertical" property="distanceVertical"/>
|
|
|
@@ -45,6 +47,8 @@
|
|
|
t.dept_station_id,
|
|
|
t.pillar_code,
|
|
|
t.marker,
|
|
|
+ t.start_marker,
|
|
|
+ t.end_marker,
|
|
|
t.count,
|
|
|
t.distance_horizontal,
|
|
|
t.distance_vertical,
|
|
|
@@ -96,6 +100,12 @@
|
|
|
<if test='null != marker'>
|
|
|
marker,
|
|
|
</if>
|
|
|
+ <if test='null != startMarker'>
|
|
|
+ start_marker,
|
|
|
+ </if>
|
|
|
+ <if test='null != endMarker'>
|
|
|
+ end_marker,
|
|
|
+ </if>
|
|
|
<if test='null != count'>
|
|
|
count,
|
|
|
</if>
|
|
|
@@ -167,6 +177,12 @@
|
|
|
<if test='null != marker'>
|
|
|
#{marker},
|
|
|
</if>
|
|
|
+ <if test='null != startMarker'>
|
|
|
+ #{startMarker},
|
|
|
+ </if>
|
|
|
+ <if test='null != endMarker'>
|
|
|
+ #{endMarker},
|
|
|
+ </if>
|
|
|
<if test='null != count'>
|
|
|
#{count},
|
|
|
</if>
|
|
|
@@ -228,6 +244,8 @@
|
|
|
<if test='null != stationName'>station_name = #{stationName},</if>
|
|
|
<if test='null != pillarCode'>pillar_code = #{pillarCode},</if>
|
|
|
<if test='null != marker'>marker = #{marker},</if>
|
|
|
+ <if test='null != startMarker'>start_marker = #{startMarker},</if>
|
|
|
+ <if test='null != endMarker'>end_marker = #{endMarker},</if>
|
|
|
<if test='null != count'>count = #{count},</if>
|
|
|
<if test='null != distanceHorizontal'>distance_horizontal = #{distanceHorizontal},</if>
|
|
|
<if test='null != distanceVertical'>distance_vertical = #{distanceVertical},</if>
|