Forráskód Böngészése

分段绝缘器新增B拉出值g拉出值字段

wuhonghao 4 éve
szülő
commit
545bacb59b

+ 6 - 0
railway-business/src/main/java/com/railway/business/catenary/domain/BusJcbFdfxjyq.java

@@ -55,6 +55,12 @@ public class BusJcbFdfxjyq extends BusJcab{
     @ApiModelProperty(value = "h点值")
     private BigDecimal pointH;
 
+    @ApiModelProperty(value = "b点拉出值")
+    private BigDecimal pointBPull;
+
+    @ApiModelProperty(value = "g点拉出值")
+    private BigDecimal pointGPull;
+
     @ApiModelProperty(value = "分段负驰度")
     private BigDecimal fcd;
 

+ 24 - 0
railway-business/src/main/resources/mapper/catenary/BusJcbFdfxjyqMapper.xml

@@ -24,6 +24,8 @@
     <result column="point_f" property="pointF"/>
     <result column="point_g" property="pointG"/>
     <result column="point_h" property="pointH"/>
+    <result column="point_b_pull" property="pointBPull"/>
+    <result column="point_g_pull" property="pointGPull"/>
     <result column="fcd" property="fcd"/>
     <result column="fddmpsd" property="fddmpsd"/>
     <result column="jybj_fdjyqzjyzt" property="jybjFdjyqzjyzt"/>
@@ -79,6 +81,8 @@
     t.point_f,
     t.point_g,
     t.point_h,
+    t.point_b_pull,
+    t.point_g_pull,
     t.fcd,
     t.fddmpsd,
     t.jybj_fdjyqzjyzt,
@@ -162,6 +166,12 @@
       <if test='null != pointH'>
         point_h,
       </if>
+      <if test='null != pointBPull'>
+        point_b_pull,
+      </if>
+      <if test='null != pointGPull'>
+        point_g_pull,
+      </if>
       <if test='null != fcd'>
         fcd,
       </if>
@@ -308,6 +318,12 @@
       <if test='null != pointH'>
         #{pointH},
       </if>
+      <if test='null != pointBPull'>
+        #{pointBPull},
+      </if>
+      <if test='null != pointGPull'>
+        #{pointGPull},
+      </if>
       <if test='null != fcd'>
         #{fcd},
       </if>
@@ -434,6 +450,8 @@
       <if test='null != pointF'>point_f = #{pointF},</if>
       <if test='null != pointG'>point_g = #{pointG},</if>
       <if test='null != pointH'>point_h = #{pointH},</if>
+      <if test='null != pointBPull'>point_b_pull = #{pointBPull},</if>
+      <if test='null != pointGPull'>point_g_pull = #{pointGPull},</if>
       <if test='null != fcd'>fcd = #{fcd},</if>
       <if test='null != fddmpsd'>fddmpsd = #{fddmpsd},</if>
       <if test='null != jybjFdjyqzjyzt'>jybj_fdjyqzjyzt = #{jybjFdjyqzjyzt},</if>
@@ -545,6 +563,12 @@
       <if test="pointH!=null and pointH!=''">
         and t.point_h=#{pointH}
       </if>
+      <if test="pointBPull!=null and pointBPull!=''">
+        and t.point_b_pull=#{pointBPull}
+      </if>
+      <if test="pointGPull!=null and pointGPull!=''">
+        and t.point_g_pull=#{pointGPull}
+      </if>
       <if test="fcd!=null and fcd!=''">
         and t.fcd=#{fcd}
       </if>