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