|
@@ -29,10 +29,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="confirm2Name" column="confirm2_name" />
|
|
|
<result property="dewPoint" column="dew_point" />
|
|
|
<result property="dewPointValue" column="dew_point_value" />
|
|
|
+ <result property="oxygenValue" column="oxygen_value" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTPssrNitrogenVo">
|
|
|
- select d.id, d.dew_point, d.dew_point_value, u1.nick_name confirm1_name, u2.nick_name confirm2_name, d.sub_id, d.approve_id, d.system_name, d.sampling_date, d.sample_name, d.oxygen, d.standard, d.confirm1, d.confirm2, d.confirmation_date, d.del_flag, d.creater_code, d.createdate, d.updater_code, d.updatedate, d.dept_id, d.remarks, d.approve_status ,s.dept_name from t_pssr_nitrogen d
|
|
|
+ select d.id, d.dew_point, d.dew_point_value, d.oxygen_value, u1.nick_name confirm1_name, u2.nick_name confirm2_name, d.sub_id, d.approve_id, d.system_name, d.sampling_date, d.sample_name, d.oxygen, d.standard, d.confirm1, d.confirm2, d.confirmation_date, d.del_flag, d.creater_code, d.createdate, d.updater_code, d.updatedate, d.dept_id, d.remarks, d.approve_status ,s.dept_name from t_pssr_nitrogen d
|
|
|
left join sys_dept s on s.dept_id = d.dept_id
|
|
|
left join sys_user u1 on u1.user_id = d.CONFIRM1
|
|
|
left join sys_user u2 on u2.user_id = d.CONFIRM2
|
|
@@ -96,6 +97,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="samplingDate != null">sampling_date,</if>
|
|
|
<if test="sampleName != null">sample_name,</if>
|
|
|
<if test="oxygen != null">oxygen,</if>
|
|
|
+ <if test="oxygenValue != null">oxygen_value,</if>
|
|
|
<if test="standard != null">standard,</if>
|
|
|
<if test="confirm1 != null">confirm1,</if>
|
|
|
<if test="confirm2 != null">confirm2,</if>
|
|
@@ -119,6 +121,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="samplingDate != null">#{samplingDate},</if>
|
|
|
<if test="sampleName != null">#{sampleName},</if>
|
|
|
<if test="oxygen != null">#{oxygen},</if>
|
|
|
+ <if test="oxygenValue != null">#{oxygenValue},</if>
|
|
|
<if test="standard != null">#{standard},</if>
|
|
|
<if test="confirm1 != null">#{confirm1},</if>
|
|
|
<if test="confirm2 != null">#{confirm2},</if>
|
|
@@ -145,6 +148,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="samplingDate != null">sampling_date = #{samplingDate},</if>
|
|
|
<if test="sampleName != null">sample_name = #{sampleName},</if>
|
|
|
<if test="oxygen != null">oxygen = #{oxygen},</if>
|
|
|
+ <if test="oxygenValue != null">oxygen_value = #{oxygenValue},</if>
|
|
|
<if test="standard != null">standard = #{standard},</if>
|
|
|
<if test="confirm1 != null">confirm1 = #{confirm1},</if>
|
|
|
<if test="confirm2 != null">confirm2 = #{confirm2},</if>
|