|
|
@@ -31,6 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="updateBy" column="update_by" />
|
|
|
<result property="updateTime" column="update_time" />
|
|
|
<result property="status" column="status" />
|
|
|
+ <result property="status2" column="status2" />
|
|
|
<result property="team" column="team" />
|
|
|
<result property="photoUrl" column="photo_url" />
|
|
|
<result property="recorder" column="recorder" />
|
|
|
@@ -55,7 +56,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectTFurnancePressureVo">
|
|
|
- select d.id, d.recorder, d.team, d.photo_url, d.status, d.furnance_name, d.record_time,
|
|
|
+ select d.id, d.recorder, d.team, d.photo_url, d.status, d.status2, d.furnance_name, d.record_time,
|
|
|
d.pass1, d.pass2, d.pass3, d.pass4, d.pass5, d.pass6, d.pass7, d.pass8, d.pass9, d.pass10, d.pass11, d.pass12, d.pass13, d.pass14, d.pass15, d.pass16,
|
|
|
d.remarks1, d.remarks2, d.remarks3, d.remarks4, d.remarks5, d.remarks6, d.remarks7, d.remarks8, d.remarks9, d.remarks10, d.remarks11, d.remarks12, d.remarks13, d.remarks14, d.remarks15, d.remarks16,
|
|
|
d.dept_id, d.del_flag, d.create_by, d.create_time, d.update_by, d.update_time from t_furnance_pressure d
|
|
|
@@ -88,6 +89,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="pass16 != null and pass16 != ''"> and pass16 = #{pass16}</if>
|
|
|
<if test="deptId != null "> and dept_id = #{deptId}</if>
|
|
|
<if test="status != null "> and status = #{status}</if>
|
|
|
+ <if test="status2 != null "> and status2 = #{status2}</if>
|
|
|
<if test="team != null "> and team = #{team}</if>
|
|
|
<if test="photoUrl != null "> and photo_url = #{photoUrl}</if>
|
|
|
<if test="recorder != null and recorder != 0"> and recorder = #{recorder}</if>
|
|
|
@@ -183,6 +185,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="status != null">status,</if>
|
|
|
+ <if test="status2 != null">status2,</if>
|
|
|
<if test="team != null">team,</if>
|
|
|
<if test="photoUrl != null">photo_url,</if>
|
|
|
<if test="recorder != null and recorder != 0">recorder,</if>
|
|
|
@@ -230,6 +233,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="updateBy != null">#{updateBy},</if>
|
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
|
<if test="status != null">#{status},</if>
|
|
|
+ <if test="status2 != null">#{status2},</if>
|
|
|
<if test="team != null">#{team},</if>
|
|
|
<if test="photoUrl != null">#{photoUrl},</if>
|
|
|
<if test="recorder != null and recorder != 0">#{recorder},</if>
|
|
|
@@ -280,6 +284,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="updateBy != null">update_by = #{updateBy},</if>
|
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
|
<if test="status != null">status = #{status},</if>
|
|
|
+ <if test="status2 != null">status2 = #{status2},</if>
|
|
|
<if test="team != null">team = #{team},</if>
|
|
|
<if test="photoUrl != null">photo_url = #{photoUrl},</if>
|
|
|
<if test="recorder != null and recorder != 0">recorder = #{recorder},</if>
|