|
@@ -36,6 +36,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="no3Qyc2Yz" column="NO3_QYC_2_YZ" />
|
|
|
<result property="JSLL" column="JSLL" />
|
|
|
<result property="createdTime" column="CREATED_TIME" />
|
|
|
+ <result property="hycxsyAll" column="HYCXSY_ALL" />
|
|
|
+ <result property="qyanAll" column="QYAN_ALL" />
|
|
|
+ <result property="qyckxsyAll" column="QYCKXSY_ALL" />
|
|
|
+ <result property="hyzlsyAll" column="HYZLSY_ALL" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTXinyiSqlServer">
|
|
@@ -43,7 +47,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</sql>
|
|
|
|
|
|
<sql id="selectTXinyiRobotVo">
|
|
|
- select V_DATE, V_TIME, COD_YB, COD_JQR, COD_YZ, TP_HL1_JQR, TP_HL2_JQR, TP_RCC_JQR, TP_1_YZ, TP_2_YZ, TP_RCC_YZ, NH3_1_JQR, NH3_2_JQR, NH3_1_YZ, NO3_HLC1_YZ, NH3_2_YZ, NO3_HLC2_YZ, NO3_HLJ1_JQR, NO3_HLJ2_JQR, TYLL, NO3_QYC_1_JQR, NO3_QYC_2_JQR, NO3_QYC_1_YZ, NO3_QYC_2_YZ, JSLL from t_xinyi_robot
|
|
|
+ select ID, V_DATE, V_TIME, V_DATE_TIME, TEST_DATE, TEST_HOUR, TEST_TIME, COD_YB, COD_JQR, COD_YZ, TP_HL1_JQR, TP_HL2_JQR, TP_RCC_JQR, TP_1_YZ, TP_2_YZ, TP_RCC_YZ, NH3_1_JQR, NH3_2_JQR, NH3_1_YZ, NO3_HLC1_YZ, NH3_2_YZ, NO3_HLC2_YZ, NO3_HLJ1_JQR, NO3_HLJ2_JQR, TYLL, NO3_QYC_1_JQR, NO3_QYC_2_JQR, NO3_QYC_1_YZ, NO3_QYC_2_YZ, JSLL, CREATED_TIME, HYCXSY_ALL, QYAN_ALL, QYCKXSY_ALL, HYZLSY_ALL from t_xinyi_robot
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectTXinyiRobotList" parameterType="TXinyiRobot" resultMap="TXinyiRobotResult">
|
|
@@ -53,6 +57,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="vDate != null and vDate != ''"> and V_DATE = #{vDate}</if>
|
|
|
<if test="vTime != null and vTime != ''"> and V_TIME = #{vTime}</if>
|
|
|
<if test="vDateTime != null and vDateTime != ''"> and V_DATE_TIME = #{vDateTime}</if>
|
|
|
+ <if test="testDate != null and testDate != ''"> and TEST_DATE = #{testDate}</if>
|
|
|
+ <if test="testHour != null and testHour != ''"> and TEST_HOUR = #{testHour}</if>
|
|
|
+ <if test="testTime != null and testTime != ''"> and TEST_TIME = #{testTime}</if>
|
|
|
<if test="codYb != null "> and COD_YB = #{codYb}</if>
|
|
|
<if test="codJqr != null "> and COD_JQR = #{codJqr}</if>
|
|
|
<if test="codYz != null "> and COD_YZ = #{codYz}</if>
|
|
@@ -77,10 +84,14 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="no3Qyc2Yz != null "> and NO3_QYC_2_YZ = #{no3Qyc2Yz}</if>
|
|
|
<if test="JSLL != null "> and JSLL = #{JSLL}</if>
|
|
|
<if test="createdTime != null "> and CREATED_TIME = #{createdTime}</if>
|
|
|
+ <if test="hycxsyAll != null and hycxsyAll != ''"> and HYCXSY_ALL = #{hycxsyAll}</if>
|
|
|
+ <if test="qyanAll != null and qyanAll != ''"> and QYAN_ALL = #{qyanAll}</if>
|
|
|
+ <if test="qyckxsyAll != null and qyckxsyAll != ''"> and QYCKXSY_ALL = #{qyckxsyAll}</if>
|
|
|
+ <if test="hyzlsyAll != null and hyzlsyAll != ''"> and HYZLSY_ALL = #{hyzlsyAll}</if>
|
|
|
</where>
|
|
|
order by id desc
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
<select id="selectTXinyiRobotByID" parameterType="Long" resultMap="TXinyiRobotResult">
|
|
|
<include refid="selectTXinyiRobotVo"/>
|
|
|
where ID = #{ID}
|
|
@@ -119,6 +130,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="no3Qyc2Yz != null">NO3_QYC_2_YZ,</if>
|
|
|
<if test="JSLL != null">JSLL,</if>
|
|
|
<if test="createdTime != null">CREATED_TIME,</if>
|
|
|
+ <if test="hycxsyAll != null">HYCXSY_ALL,</if>
|
|
|
+ <if test="qyanAll != null">QYAN_ALL,</if>
|
|
|
+ <if test="qyckxsyAll != null">QYCKXSY_ALL,</if>
|
|
|
+ <if test="hyzlsyAll != null">HYZLSY_ALL,</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="vDate != null">#{vDate},</if>
|
|
@@ -151,6 +166,10 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="no3Qyc2Yz != null">#{no3Qyc2Yz},</if>
|
|
|
<if test="JSLL != null">#{JSLL},</if>
|
|
|
<if test="createdTime != null">#{createdTime},</if>
|
|
|
+ <if test="hycxsyAll != null">#{hycxsyAll},</if>
|
|
|
+ <if test="qyanAll != null">#{qyanAll},</if>
|
|
|
+ <if test="qyckxsyAll != null">#{qyckxsyAll},</if>
|
|
|
+ <if test="hyzlsyAll != null">#{hyzlsyAll},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|
|
@@ -187,10 +206,16 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="no3Qyc2Yz != null">NO3_QYC_2_YZ = #{no3Qyc2Yz},</if>
|
|
|
<if test="JSLL != null">JSLL = #{JSLL},</if>
|
|
|
<if test="createdTime != null">CREATED_TIME = #{createdTime},</if>
|
|
|
+ <if test="hycxsyAll != null">HYCXSY_ALL = #{hycxsyAll},</if>
|
|
|
+ <if test="qyanAll != null">QYAN_ALL = #{qyanAll},</if>
|
|
|
+ <if test="qyckxsyAll != null">QYCKXSY_ALL = #{qyckxsyAll},</if>
|
|
|
+ <if test="hyzlsyAll != null">HYZLSY_ALL = #{hyzlsyAll},</if>
|
|
|
</trim>
|
|
|
where ID = #{ID}
|
|
|
</update>
|
|
|
|
|
|
+
|
|
|
+ <!-- 替换文件的时候,下面的不要删 -->
|
|
|
<delete id="deleteTXinyiRobotByID" parameterType="Long">
|
|
|
delete from t_xinyi_robot where ID = #{ID}
|
|
|
</delete>
|