Przeglądaj źródła

修复九防台账BUG

wuhonghao 4 lat temu
rodzic
commit
6df68447be

+ 18 - 0
railway-business/src/main/resources/mapper/baseinfo/BasePreventBirdMapper.xml

@@ -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="risk_source" property="riskSource"/>
     <result column="measures" property="measures"/>
     <result column="remark" property="remark"/>
@@ -40,6 +42,8 @@
     t.dept_station_id,
     t.pillar_code,
     t.marker,
+    t.start_marker,
+    t.end_marker,
     t.risk_source,
     t.measures,
     t.remark,
@@ -86,6 +90,12 @@
       <if test='null != marker'>
         marker,
       </if>
+      <if test='null != startMarker'>
+        start_marker,
+      </if>
+      <if test='null != endMarker'>
+        end_marker,
+      </if>
       <if test='null != riskSource'>
         risk_source,
       </if>
@@ -142,6 +152,12 @@
       <if test='null != marker'>
         #{marker},
       </if>
+      <if test='null != startMarker'>
+        #{startMarker},
+      </if>
+      <if test='null != endMarker'>
+        #{endMarker},
+      </if>
       <if test='null != riskSource'>
         #{riskSource},
       </if>
@@ -188,6 +204,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 != riskSource'>risk_source = #{riskSource},</if>
       <if test='null != measures'>measures = #{measures},</if>
       <if test='null != remark'>remark = #{remark},</if>

+ 18 - 0
railway-business/src/main/resources/mapper/baseinfo/BasePreventFloodMapper.xml

@@ -18,6 +18,8 @@
     <result column="station_name" property="stationName"/>
     <result column="dept_station_id" property="deptStationId"/>
     <result column="marker" property="marker"/>
+    <result column="start_marker" property="startMarker"/>
+    <result column="end_marker" property="endMarker"/>
     <result column="pillar_area" property="pillarArea"/>
     <result column="pillar_count" property="pillarCount"/>
     <result column="line_type" property="lineType"/>
@@ -44,6 +46,8 @@
     v.station_name,
     t.dept_station_id,
     t.marker,
+    t.start_marker,
+    t.end_marker,
     t.pillar_area,
     t.pillar_count,
     t.line_type,
@@ -95,6 +99,12 @@
       <if test='null != marker'>
         marker,
       </if>
+      <if test='null != startMarker'>
+        start_marker,
+      </if>
+      <if test='null != endMarker'>
+        end_marker,
+      </if>
       <if test='null != pillarArea'>
         pillar_area,
       </if>
@@ -160,6 +170,12 @@
       <if test='null != marker'>
         #{marker},
       </if>
+      <if test='null != startMarker'>
+        #{startMarker},
+      </if>
+      <if test='null != endMarker'>
+        #{endMarker},
+      </if>
       <if test='null != pillarArea'>
         #{pillarArea},
       </if>
@@ -213,6 +229,8 @@
       <if test='null != deptStationId'>dept_station_id = #{deptStationId},</if>
       <if test='null != stationName'>station_name = #{stationName},</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 != pillarArea'>pillar_area = #{pillarArea},</if>
       <if test='null != pillarCount'>pillar_count = #{pillarCount},</if>
       <if test='null != lineType'>line_type = #{lineType},</if>

+ 18 - 0
railway-business/src/main/resources/mapper/baseinfo/BasePreventForeignMapper.xml

@@ -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="risk_source" property="riskSource"/>
     <result column="measures" property="measures"/>
     <result column="remark" property="remark"/>
@@ -40,6 +42,8 @@
     t.dept_station_id,
     t.pillar_code,
     t.marker,
+    t.start_marker,
+    t.end_marker,
     t.risk_source,
     t.measures,
     t.remark,
@@ -86,6 +90,12 @@
       <if test='null != marker'>
         marker,
       </if>
+      <if test='null != startMarker'>
+        start_marker,
+      </if>
+      <if test='null != endMarker'>
+        end_marker,
+      </if>
       <if test='null != riskSource'>
         risk_source,
       </if>
@@ -142,6 +152,12 @@
       <if test='null != marker'>
         #{marker},
       </if>
+      <if test='null != startMarker'>
+        #{startMarker},
+      </if>
+      <if test='null != endMarker'>
+        #{endMarker},
+      </if>
       <if test='null != riskSource'>
         #{riskSource},
       </if>
@@ -188,6 +204,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 != riskSource'>risk_source = #{riskSource},</if>
       <if test='null != measures'>measures = #{measures},</if>
       <if test='null != remark'>remark = #{remark},</if>

+ 18 - 0
railway-business/src/main/resources/mapper/baseinfo/BasePreventIceMapper.xml

@@ -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="risk_source" property="riskSource"/>
     <result column="measures" property="measures"/>
     <result column="remark" property="remark"/>
@@ -40,6 +42,8 @@
     t.dept_station_id,
     t.pillar_code,
     t.marker,
+    t.start_marker,
+    t.end_marker,
     t.risk_source,
     t.measures,
     t.remark,
@@ -86,6 +90,12 @@
       <if test='null != marker'>
         marker,
       </if>
+      <if test='null != startMarker'>
+        start_marker,
+      </if>
+      <if test='null != endMarker'>
+        end_marker,
+      </if>
       <if test='null != riskSource'>
         risk_source,
       </if>
@@ -142,6 +152,12 @@
       <if test='null != marker'>
         #{marker},
       </if>
+      <if test='null != startMarker'>
+        #{startMarker},
+      </if>
+      <if test='null != endMarker'>
+        #{endMarker},
+      </if>
       <if test='null != riskSource'>
         #{riskSource},
       </if>
@@ -188,6 +204,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 != riskSource'>risk_source = #{riskSource},</if>
       <if test='null != measures'>measures = #{measures},</if>
       <if test='null != remark'>remark = #{remark},</if>

+ 18 - 0
railway-business/src/main/resources/mapper/baseinfo/BasePreventRustMapper.xml

@@ -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="rust_position" property="rustPosition"/>
     <result column="risk_source" property="riskSource"/>
     <result column="measures" property="measures"/>
@@ -41,6 +43,8 @@
     t.dept_station_id,
     t.pillar_code,
     t.marker,
+    t.start_marker,
+    t.end_marker,
     t.rust_position,
     t.risk_source,
     t.measures,
@@ -88,6 +92,12 @@
       <if test='null != marker'>
         marker,
       </if>
+      <if test='null != startMarker'>
+        start_marker,
+      </if>
+      <if test='null != endMarker'>
+        end_marker,
+      </if>
       <if test='null != rustPosition'>
         rust_position,
       </if>
@@ -147,6 +157,12 @@
       <if test='null != marker'>
         #{marker},
       </if>
+      <if test='null != startMarker'>
+        #{startMarker},
+      </if>
+      <if test='null != endMarker'>
+        #{endMarker},
+      </if>
       <if test='null != rustPosition'>
         #{rustPosition},
       </if>
@@ -196,6 +212,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 != rustPosition'>rust_position = #{rustPosition},</if>
       <if test='null != riskSource'>risk_source = #{riskSource},</if>
       <if test='null != measures'>measures = #{measures},</if>

+ 18 - 0
railway-business/src/main/resources/mapper/baseinfo/BasePreventThawMapper.xml

@@ -20,6 +20,8 @@
     <result column="line_type" property="lineType"/>
     <result column="pillar_type" property="pillarType"/>
     <result column="marker" property="marker"/>
+    <result column="start_marker" property="startMarker"/>
+    <result column="end_marker" property="endMarker"/>
     <result column="terrain" property="terrain"/>
     <result column="iftransform" property="iftransform"/>
     <result column="measures" property="measures"/>
@@ -47,6 +49,8 @@
     t.line_type,
     t.pillar_type,
     t.marker,
+    t.start_marker,
+    t.end_marker,
     t.terrain,
     t.iftransform,
     t.measures,
@@ -103,6 +107,12 @@
       <if test='null != marker'>
         marker,
       </if>
+      <if test='null != startMarker'>
+        start_marker,
+      </if>
+      <if test='null != endMarker'>
+        end_marker,
+      </if>
       <if test='null != terrain'>
         terrain,
       </if>
@@ -171,6 +181,12 @@
       <if test='null != marker'>
         #{marker},
       </if>
+      <if test='null != startMarker'>
+        #{startMarker},
+      </if>
+      <if test='null != endMarker'>
+        #{endMarker},
+      </if>
       <if test='null != terrain'>
         #{terrain},
       </if>
@@ -223,6 +239,8 @@
       <if test='null != lineType'>line_type = #{lineType},</if>
       <if test='null != pillarType'>pillar_type = #{pillarType},</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 != terrain'>terrain = #{terrain},</if>
       <if test='null != iftransform'>iftransform = #{iftransform},</if>
       <if test='null != measures'>measures = #{measures},</if>

+ 18 - 0
railway-business/src/main/resources/mapper/baseinfo/BasePreventThunderMapper.xml

@@ -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="specification" property="specification"/>
     <result column="display_num" property="displayNum"/>
     <result column="del_flag" property="delFlag"/>
@@ -39,6 +41,8 @@
     t.dept_station_id,
     t.pillar_code,
     t.marker,
+    t.start_marker,
+    t.end_marker,
     t.specification,
     t.display_num,
     t.del_flag,
@@ -84,6 +88,12 @@
       <if test='null != marker'>
         marker,
       </if>
+      <if test='null != startMarker'>
+        start_marker,
+      </if>
+      <if test='null != endMarker'>
+        end_marker,
+      </if>
       <if test='null != specification'>
         specification,
       </if>
@@ -137,6 +147,12 @@
       <if test='null != marker'>
         #{marker},
       </if>
+      <if test='null != startMarker'>
+        #{startMarker},
+      </if>
+      <if test='null != endMarker'>
+        #{endMarker},
+      </if>
       <if test='null != specification'>
         #{specification},
       </if>
@@ -180,6 +196,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 != specification'>specification = #{specification},</if>
       <if test='null != displayNum'>display_num = #{displayNum},</if>
       <if test='null != delFlag'>del_flag = #{delFlag},</if>

+ 18 - 0
railway-business/src/main/resources/mapper/baseinfo/BasePreventTreeMapper.xml

@@ -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>

+ 18 - 0
railway-business/src/main/resources/mapper/baseinfo/BasePreventWindMapper.xml

@@ -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="risk_source" property="riskSource"/>
     <result column="measures" property="measures"/>
     <result column="remark" property="remark"/>
@@ -40,6 +42,8 @@
     t.dept_station_id,
     t.pillar_code,
     t.marker,
+    t.start_marker,
+    t.end_marker,
     t.risk_source,
     t.measures,
     t.remark,
@@ -86,6 +90,12 @@
       <if test='null != marker'>
         marker,
       </if>
+      <if test='null != startMarker'>
+        start_marker,
+      </if>
+      <if test='null != endMarker'>
+        end_marker,
+      </if>
       <if test='null != riskSource'>
         risk_source,
       </if>
@@ -142,6 +152,12 @@
       <if test='null != marker'>
         #{marker},
       </if>
+      <if test='null != startMarker'>
+        #{startMarker},
+      </if>
+      <if test='null != endMarker'>
+        #{endMarker},
+      </if>
       <if test='null != riskSource'>
         #{riskSource},
       </if>
@@ -188,6 +204,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 != riskSource'>risk_source = #{riskSource},</if>
       <if test='null != measures'>measures = #{measures},</if>
       <if test='null != remark'>remark = #{remark},</if>