Bladeren bron

计算表新增几个字段

wangmiaomiao 9 maanden geleden
bovenliggende
commit
eaf337910b

+ 20 - 0
slibra-system/src/main/java/com/slibra/business/domain/TXinyiCalculate.java

@@ -125,6 +125,26 @@ public class TXinyiCalculate extends BaseEntity
     @Excel(name = "斜管沉淀池清水区上升流速")
     private BigDecimal xgcdcQsqSsls;
 
+    /** 外回流比 */
+    @Excel(name = "外回流比")
+    private BigDecimal WHLB;
+
+    /** 内回流比 */
+    @Excel(name = "内回流比")
+    private BigDecimal NHLB;
+
+    /** 万吨水产泥率 */
+    @Excel(name = "万吨水产泥率")
+    private BigDecimal WDSCNL;
+
+    /** 生化池气水比 */
+    @Excel(name = "生化池气水比")
+    private BigDecimal QSB;
+
+    /** 反冲洗水量 */
+    @Excel(name = "反冲洗水量")
+    private BigDecimal FCXSL;
+
     /** 删除标志(0代表存在 2代表删除) */
     private Long delFlag;
 

+ 34 - 9
slibra-system/src/main/resources/mapper/business/TXinyiCalculateMapper.xml

@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE mapper
-PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
-"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
 <mapper namespace="com.slibra.business.mapper.TXinyiCalculateMapper">
-    
+
     <resultMap type="TXinyiCalculate" id="TXinyiCalculateResult">
         <result property="id"    column="id"    />
         <result property="testDate"    column="TEST_DATE"    />
@@ -30,6 +30,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         <result property="eccGtfh"    column="ECC_GTFH"    />
         <result property="clsnJcsj"    column="CLSN_JCSJ"    />
         <result property="xgcdcQsqSsls"    column="XGCDC_QSQ_SSLS"    />
+        <result property="WHLB"    column="WHLB"    />
+        <result property="NHLB"    column="NHLB"    />
+        <result property="WDSCNL"    column="WDSCNL"    />
+        <result property="QSB"    column="QSB"    />
+        <result property="FCXSL"    column="FCXSL"    />
         <result property="delFlag"    column="del_flag"    />
         <result property="revision"    column="revision"    />
         <result property="createBy"    column="create_by"    />
@@ -40,7 +45,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
     </resultMap>
 
     <sql id="selectTXinyiCalculateVo">
-        select id, TEST_DATE, TEST_HOUR, TEST_TIME, JS_TDB, JS_TLB, JS_BOD_B_COD, YYQ_HRT, QYQ_HRT, HYQ_HRT, HFXWNNDZB, F_M, GSLS, GSLS_ONE, GSLS_TWO, XGS_GSLS, XLCSC_BMFH, XLCSC_HRT, CCCDC_BMFH, CCCDC_HRT, ECC_BMFH, ECC_HRT, ECC_GTFH, CLSN_JCSJ, XGCDC_QSQ_SSLS, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_xinyi_calculate
+        select id, TEST_DATE, TEST_HOUR, TEST_TIME, JS_TDB, JS_TLB, JS_BOD_B_COD, YYQ_HRT, QYQ_HRT, HYQ_HRT, HFXWNNDZB, F_M, GSLS, GSLS_ONE, GSLS_TWO, XGS_GSLS, XLCSC_BMFH, XLCSC_HRT, CCCDC_BMFH, CCCDC_HRT, ECC_BMFH, ECC_HRT, ECC_GTFH, CLSN_JCSJ, XGCDC_QSQ_SSLS, WHLB, NHLB, WDSCNL, QSB, FCXSL, del_flag, revision, create_by, create_time, update_by, update_time, remark from t_xinyi_calculate
     </sql>
 
     <select id="selectTXinyiCalculateList" parameterType="TXinyiCalculate" resultMap="TXinyiCalculateResult">
@@ -71,16 +76,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="eccGtfh != null "> and ECC_GTFH = #{eccGtfh}</if>
             <if test="clsnJcsj != null "> and CLSN_JCSJ = #{clsnJcsj}</if>
             <if test="xgcdcQsqSsls != null "> and XGCDC_QSQ_SSLS = #{xgcdcQsqSsls}</if>
+            <if test="WHLB != null "> and WHLB = #{WHLB}</if>
+            <if test="NHLB != null "> and NHLB = #{NHLB}</if>
+            <if test="WDSCNL != null "> and WDSCNL = #{WDSCNL}</if>
+            <if test="QSB != null "> and QSB = #{QSB}</if>
+            <if test="FCXSL != null "> and FCXSL = #{FCXSL}</if>
             <if test="revision != null "> and revision = #{revision}</if>
         </where>
         and del_flag = 0 order by id desc
     </select>
-    
+
     <select id="selectTXinyiCalculateById" parameterType="Long" resultMap="TXinyiCalculateResult">
         <include refid="selectTXinyiCalculateVo"/>
         where id = #{id} and del_flag = 0
     </select>
-        
+
     <insert id="insertTXinyiCalculate" parameterType="TXinyiCalculate" useGeneratedKeys="true" keyProperty="id">
         insert into t_xinyi_calculate
         <trim prefix="(" suffix=")" suffixOverrides=",">
@@ -108,6 +118,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="eccGtfh != null">ECC_GTFH,</if>
             <if test="clsnJcsj != null">CLSN_JCSJ,</if>
             <if test="xgcdcQsqSsls != null">XGCDC_QSQ_SSLS,</if>
+            <if test="WHLB != null">WHLB,</if>
+            <if test="NHLB != null">NHLB,</if>
+            <if test="WDSCNL != null">WDSCNL,</if>
+            <if test="QSB != null">QSB,</if>
+            <if test="FCXSL != null">FCXSL,</if>
             <if test="delFlag != null">del_flag,</if>
             <if test="revision != null">revision,</if>
             <if test="createBy != null">create_by,</if>
@@ -115,7 +130,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="updateBy != null">update_by,</if>
             <if test="updateTime != null">update_time,</if>
             <if test="remark != null">remark,</if>
-         </trim>
+        </trim>
         <trim prefix="values (" suffix=")" suffixOverrides=",">
             <if test="testDate != null">#{testDate},</if>
             <if test="testHour != null">#{testHour},</if>
@@ -141,6 +156,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="eccGtfh != null">#{eccGtfh},</if>
             <if test="clsnJcsj != null">#{clsnJcsj},</if>
             <if test="xgcdcQsqSsls != null">#{xgcdcQsqSsls},</if>
+            <if test="WHLB != null">#{WHLB},</if>
+            <if test="NHLB != null">#{NHLB},</if>
+            <if test="WDSCNL != null">#{WDSCNL},</if>
+            <if test="QSB != null">#{QSB},</if>
+            <if test="FCXSL != null">#{FCXSL},</if>
             <if test="delFlag != null">#{delFlag},</if>
             <if test="revision != null">#{revision},</if>
             <if test="createBy != null">#{createBy},</if>
@@ -148,7 +168,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="updateBy != null">#{updateBy},</if>
             <if test="updateTime != null">#{updateTime},</if>
             <if test="remark != null">#{remark},</if>
-         </trim>
+        </trim>
     </insert>
 
     <update id="updateTXinyiCalculate" parameterType="TXinyiCalculate">
@@ -178,6 +198,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
             <if test="eccGtfh != null">ECC_GTFH = #{eccGtfh},</if>
             <if test="clsnJcsj != null">CLSN_JCSJ = #{clsnJcsj},</if>
             <if test="xgcdcQsqSsls != null">XGCDC_QSQ_SSLS = #{xgcdcQsqSsls},</if>
+            <if test="WHLB != null">WHLB = #{WHLB},</if>
+            <if test="NHLB != null">NHLB = #{NHLB},</if>
+            <if test="WDSCNL != null">WDSCNL = #{WDSCNL},</if>
+            <if test="QSB != null">QSB = #{QSB},</if>
+            <if test="FCXSL != null">FCXSL = #{FCXSL},</if>
             <if test="delFlag != null">del_flag = #{delFlag},</if>
             <if test="revision != null">revision = #{revision},</if>
             <if test="createBy != null">create_by = #{createBy},</if>
@@ -190,7 +215,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
         where id = #{id}
     </update>
 
-    
+
 
     <delete id="deleteTXinyiCalculateById" parameterType="Long">
         update t_xinyi_calculate set del_flag = 2,revision = revision + 1 where del_flag = 0 and id = #{id}