123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- <?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">
- <mapper namespace="com.ruoyi.project.sems.mapper.TSpecdevGlMapper">
- <resultMap type="TSpecdevGl" id="TSpecdevGlResult">
- <result property="id" column="id" />
- <result property="plantCode" column="plant_code" />
- <result property="unit" column="unit" />
- <result property="devname" column="devname" />
- <result property="devno" column="devno" />
- <result property="submitdate" column="submitdate" />
- <result property="status" column="status" />
- <result property="delFlag" column="del_flag" />
- <result property="createrCode" column="creater_code" />
- <result property="createdate" column="createdate" />
- <result property="updaterCode" column="updater_code" />
- <result property="updatedate" column="updatedate" />
- <result property="deptId" column="dept_id" />
- <result property="remarks" column="remarks" />
- <result property="remarks2" column="remarks2" />
- <result property="approveStatus" column="approve_status" />
- <result property="regno" column="regno" />
- <result property="useno" column="useno" />
- <result property="warnDate" column="warn_date" />
- <result property="warnCycle" column="warn_cycle" />
- <result property="nextWarnDate" column="next_warn_date" />
- <result property="warnFlag" column="warn_flag" />
- <result property="createUnit" column="create_unit" />
- <result property="burnMode" column="burn_mode" />
- <result property="burnKind" column="burn_kind" />
- <result property="ratedPower" column="rated_power" />
- <result property="desPressure" column="des_pressure" />
- <result property="desTemp" column="des_temp" />
- <result property="optPressure" column="opt_pressure" />
- <result property="optTemp" column="opt_temp" />
- <result property="checkUnit" column="check_unit" />
- <result property="checkConclusion" column="check_conclusion" />
- <result property="model" column="model" />
- <result property="waterMode" column="water_mode" />
- <result property="reportNo" column="report_no" />
- <result property="approveTime" column="approve_time" />
- <result property="changeTime" column="change_time" />
- <result property="plantMaint" column="plant_maint" />
- <result property="outWarnDate" column="out_warn_date" />
- <result property="outNextWarnDate" column="out_next_warn_date" />
- <result property="outCheckConclusion" column="out_check_conclusion" />
- <result property="outReportNo" column="out_report_no" />
- <result property="engineer" column="engineer" />
- <result property="hiFlag" column="hiFlag" />
- <result property="isRepeat" column="is_repeat"/>
- </resultMap>
- <sql id="selectTSpecdevGlVo">
- select d.id, d.plant_code, d.unit, d.devname, d.devno, d.submitdate, d.status, d.del_flag, d.creater_code, d.createdate, d.updater_code, d.updatedate, d.dept_id, d.remarks,d.remarks2, d.approve_status, d.regno, d.useno, d.warn_date, d.warn_cycle, d.next_warn_date, d.warn_flag, d.create_unit, d.burn_mode, d.burn_kind, d.rated_power, d.des_pressure, d.des_temp, d.opt_pressure, d.opt_temp, d.check_unit, d.check_conclusion, d.model, d.water_mode, d.report_no, d.approve_time, d.change_time, d.plant_maint, d.out_warn_date, d.out_next_warn_date, d.out_check_conclusion, d.out_report_no, d.engineer ,s.dept_name,
- (SELECT COUNT(1) from T_SPECHI_GL h where h.DEV_ID = d.id and HI_TYPE = 0 ) as hiFlag
- ,d.is_repeat
- from t_specdev_gl d
- left join sys_dept s on s.dept_id = d.dept_id
- </sql>
- <select id="selectTSpecdevGlList" parameterType="TSpecdevGl" resultMap="TSpecdevGlResult">
- <include refid="selectTSpecdevGlVo"/>
- <where>
- <if test="plantCode != null and plantCode != ''"> and plant_code like concat(concat('%', #{plantCode}), '%') </if>
- <if test="unit != null and unit != ''"> and unit like concat(concat('%', #{unit}), '%') </if>
- <if test="devname != null and devname != ''"> and devname like concat(concat('%', #{devname}), '%')</if>
- <if test="devno != null and devno != ''"> and devno like concat(concat('%', #{devno}), '%') </if>
- <if test="regno != null and regno != ''"> and regno like concat(concat('%', #{regno}), '%') </if>
- <if test="useno != null and useno != ''"> and useno like concat(concat('%', #{useno}), '%') </if>
- <if test="warnDate != null "> and warn_date = #{warnDate}</if>
- <if test="nextWarnDate != null "> and next_warn_date = #{nextWarnDate}</if>
- <if test="warnFlag != null "> and warn_flag = #{warnFlag}</if>
- <if test="createUnit != null and createUnit != ''"> and create_unit = #{createUnit}</if>
- <if test="burnMode != null and burnMode != ''"> and burn_mode = #{burnMode}</if>
- <if test="burnKind != null and burnKind != ''"> and burn_kind = #{burnKind}</if>
- <if test="ratedPower != null and ratedPower != ''"> and rated_power = #{ratedPower}</if>
- <if test="desPressure != null and desPressure != ''"> and des_pressure = #{desPressure}</if>
- <if test="desTemp != null and desTemp != ''"> and des_temp = #{desTemp}</if>
- <if test="optPressure != null and optPressure != ''"> and opt_pressure = #{optPressure}</if>
- <if test="optTemp != null and optTemp != ''"> and opt_temp = #{optTemp}</if>
- <if test="checkUnit != null and checkUnit != ''"> and check_unit = #{checkUnit}</if>
- <if test="checkConclusion != null and checkConclusion != ''"> and check_conclusion = #{checkConclusion}</if>
- <if test="model != null and model != ''"> and model = #{model}</if>
- <if test="waterMode != null and waterMode != ''"> and water_mode = #{waterMode}</if>
- <if test="reportNo != null and reportNo != ''"> and report_no = #{reportNo}</if>
- <if test="approveTime != null "> and approve_time = #{approveTime}</if>
- <if test="changeTime != null "> and change_time = #{changeTime}</if>
- <if test="plantMaint != null and plantMaint != ''"> and plant_maint = #{plantMaint}</if>
- <if test="status != null "> and d.status = #{status}</if>
- <if test="approveStatus != null ">and approve_status = #{approveStatus}</if>
- <if test="warnFlag != null ">and warn_Flag = #{warnFlag}</if>
- <if test="searchValue != null and searchValue != ''">
- and
- (plant_code like concat(concat('%', #{searchValue}), '%')
- or unit like concat(concat('%', #{searchValue}), '%')
- or devname like concat(concat('%', #{searchValue}), '%')
- or regno like concat(concat('%', #{searchValue}), '%')
- or devno like concat(concat('%', #{searchValue}), '%')
- or useno like concat(concat('%', #{searchValue}), '%')
- or remarks like concat(concat('%', #{searchValue}), '%')
- or remarks2 like concat(concat('%', #{searchValue}), '%')
- or report_no like concat(concat('%', #{searchValue}), '%')
- or out_report_no like concat(concat('%', #{searchValue}), '%')
- )
- </if>
- <if test="isRepeat != null and isRepeat != ''">
- <if test="isRepeat == 2 ">
- and (d.DEVNO, d.PLANT_CODE, d.DEL_FLAG, d.APPROVE_STATUS) IN (
- SELECT DEVNO, PLANT_CODE, DEL_FLAG, APPROVE_STATUS
- FROM T_SPECDEV_GL
- WHERE DEL_FLAG = 0 AND APPROVE_STATUS = 0
- GROUP BY DEVNO, PLANT_CODE, DEL_FLAG, APPROVE_STATUS
- HAVING COUNT(*) > 1
- )
- </if>
- </if>
- and d.del_flag = 0
- </where>
- <!-- 数据范围过滤 -->
- ${params.dataScopePlant}
- order by d.is_repeat desc, d.plant_code, d.unit, d.id
- </select>
- <select id="selectExpiredGl" parameterType="Integer" resultMap="TSpecdevGlResult">
- select d.id, d.plant_code, d.unit, d.devname, d.devno, d.submitdate, d.status, d.del_flag, d.creater_code, d.createdate, d.updater_code, d.updatedate, d.dept_id, d.remarks,d.remarks2, d.approve_status, d.regno, d.useno, d.warn_date, d.warn_cycle, d.next_warn_date, d.warn_flag, d.create_unit, d.burn_mode, d.burn_kind, d.rated_power, d.des_pressure, d.des_temp, d.opt_pressure, d.opt_temp, d.check_unit, d.check_conclusion, d.model, d.water_mode, d.report_no, d.approve_time, d.change_time, d.plant_maint, d.out_warn_date, d.out_next_warn_date, d.out_check_conclusion, d.out_report_no, d.engineer
- from t_specdev_gl d
- <where>
- <if test="month == 0 ">and SYSDATE > NEXT_WARN_DATE</if>
- <if test="month == 3 ">and SYSDATE + INTERVAL '3' MONTH > NEXT_WARN_DATE and NEXT_WARN_DATE > SYSDATE </if>
- and DEL_FLAG = 0
- and STATUS = 1
- </where>
- order by d.plant_code asc
- </select>
- <select id="selectTSpecdevGlListByYear" parameterType="TSpecdevGl" resultMap="TSpecdevGlResult">
- <include refid="selectTSpecdevGlVo"/>
- <where>
- <if test="status != null ">and d.status = #{status}</if>
- <if test="hiType == 1 ">and to_char(NEXT_WARN_DATE,'yyyy') = #{checkYear}</if>
- <if test="hiType == 2 ">and to_char(out_next_warn_date,'yyyy') = #{checkYear}</if>
- <if test="plantIds != null and plantIds != ''">
- and
- d.plant_code in
- <foreach collection="plantIds.split(',')" item="item" index="index"
- open="(" close=")" separator=",">
- #{item}
- </foreach>
- </if>
- <!--<if test="unitIds != null and unitIds != ''">
- and
- (
- d.unit in
- <foreach collection="unitIds.split(',')" item="item" index="index"
- open="(" close=")" separator=",">
- #{item}
- </foreach>
- )
- </if>-->
- and d.del_flag = 0
- </where>
- </select>
- <select id="selectTSpecdevGlById" parameterType="Long" resultMap="TSpecdevGlResult">
- <include refid="selectTSpecdevGlVo"/>
- where id = #{id}
- </select>
- <insert id="insertTSpecdevGl" parameterType="TSpecdevGl">
- <selectKey keyProperty="id" resultType="long" order="BEFORE">
- SELECT seq_t_specdev_ylrq.NEXTVAL as id FROM DUAL
- </selectKey>
- insert into t_specdev_gl
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="id != null">id,</if>
- <if test="plantCode != null and plantCode != ''">plant_code,</if>
- <if test="unit != null">unit,</if>
- <if test="devname != null">devname,</if>
- <if test="devno != null">devno,</if>
- <if test="submitdate != null">submitdate,</if>
- <if test="status != null">status,</if>
- <if test="delFlag != null">del_flag,</if>
- <if test="createrCode != null">creater_code,</if>
- <if test="createdate != null">createdate,</if>
- <if test="updaterCode != null">updater_code,</if>
- <if test="updatedate != null">updatedate,</if>
- <if test="deptId != null">dept_id,</if>
- <if test="remarks != null">remarks,</if>
- <if test="remarks2 != null">remarks2,</if>
- <if test="approveStatus != null">approve_status,</if>
- <if test="regno != null">regno,</if>
- <if test="useno != null">useno,</if>
- <if test="warnDate != null">warn_date,</if>
- <if test="warnCycle != null">warn_cycle,</if>
- <if test="nextWarnDate != null">next_warn_date,</if>
- <if test="warnFlag != null">warn_flag,</if>
- <if test="createUnit != null">create_unit,</if>
- <if test="burnMode != null">burn_mode,</if>
- <if test="burnKind != null">burn_kind,</if>
- <if test="ratedPower != null">rated_power,</if>
- <if test="desPressure != null">des_pressure,</if>
- <if test="desTemp != null">des_temp,</if>
- <if test="optPressure != null">opt_pressure,</if>
- <if test="optTemp != null">opt_temp,</if>
- <if test="checkUnit != null">check_unit,</if>
- <if test="checkConclusion != null">check_conclusion,</if>
- <if test="model != null">model,</if>
- <if test="waterMode != null">water_mode,</if>
- <if test="reportNo != null">report_no,</if>
- <if test="approveTime != null">approve_time,</if>
- <if test="changeTime != null">change_time,</if>
- <if test="plantMaint != null">plant_maint,</if>
- <if test="outWarnDate != null">out_warn_date,</if>
- <if test="outNextWarnDate != null">out_next_warn_date,</if>
- <if test="outCheckConclusion != null">out_check_conclusion,</if>
- <if test="outReportNo != null">out_report_no,</if>
- <if test="engineer != null">engineer,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="id != null">#{id},</if>
- <if test="plantCode != null and plantCode != ''">#{plantCode},</if>
- <if test="unit != null">#{unit},</if>
- <if test="devname != null">#{devname},</if>
- <if test="devno != null">#{devno},</if>
- <if test="submitdate != null">#{submitdate},</if>
- <if test="status != null">#{status},</if>
- <if test="delFlag != null">#{delFlag},</if>
- <if test="createrCode != null">#{createrCode},</if>
- <if test="createdate != null">#{createdate},</if>
- <if test="updaterCode != null">#{updaterCode},</if>
- <if test="updatedate != null">#{updatedate},</if>
- <if test="deptId != null">#{deptId},</if>
- <if test="remarks != null">#{remarks},</if>
- <if test="remarks2 != null">#{remarks2},</if>
- <if test="approveStatus != null">#{approveStatus},</if>
- <if test="regno != null">#{regno},</if>
- <if test="useno != null">#{useno},</if>
- <if test="warnDate != null">#{warnDate},</if>
- <if test="warnCycle != null">#{warnCycle},</if>
- <if test="nextWarnDate != null">#{nextWarnDate},</if>
- <if test="warnFlag != null">#{warnFlag},</if>
- <if test="createUnit != null">#{createUnit},</if>
- <if test="burnMode != null">#{burnMode},</if>
- <if test="burnKind != null">#{burnKind},</if>
- <if test="ratedPower != null">#{ratedPower},</if>
- <if test="desPressure != null">#{desPressure},</if>
- <if test="desTemp != null">#{desTemp},</if>
- <if test="optPressure != null">#{optPressure},</if>
- <if test="optTemp != null">#{optTemp},</if>
- <if test="checkUnit != null">#{checkUnit},</if>
- <if test="checkConclusion != null">#{checkConclusion},</if>
- <if test="model != null">#{model},</if>
- <if test="waterMode != null">#{waterMode},</if>
- <if test="reportNo != null">#{reportNo},</if>
- <if test="approveTime != null">#{approveTime},</if>
- <if test="changeTime != null">#{changeTime},</if>
- <if test="plantMaint != null">#{plantMaint},</if>
- <if test="outWarnDate != null">#{outWarnDate},</if>
- <if test="outNextWarnDate != null">#{outNextWarnDate},</if>
- <if test="outCheckConclusion != null">#{outCheckConclusion},</if>
- <if test="outReportNo != null">#{outReportNo},</if>
- <if test="engineer != null">#{engineer},</if>
- </trim>
- </insert>
- <update id="updateTSpecdevGl" parameterType="TSpecdevGl">
- update t_specdev_gl
- <trim prefix="SET" suffixOverrides=",">
- <if test="plantCode != null and plantCode != ''">plant_code = #{plantCode},</if>
- <if test="unit != null">unit = #{unit},</if>
- <if test="devname != null">devname = #{devname},</if>
- <if test="devno != null">devno = #{devno},</if>
- <if test="submitdate != null">submitdate = #{submitdate},</if>
- <if test="status != null">status = #{status},</if>
- <if test="delFlag != null">del_flag = #{delFlag},</if>
- <if test="createrCode != null">creater_code = #{createrCode},</if>
- <if test="createdate != null">createdate = #{createdate},</if>
- <if test="updaterCode != null">updater_code = #{updaterCode},</if>
- <if test="updatedate != null">updatedate = #{updatedate},</if>
- <if test="deptId != null">dept_id = #{deptId},</if>
- <if test="remarks != null">remarks = #{remarks},</if>
- <if test="remarks2 != null">remarks2 = #{remarks2},</if>
- <if test="approveStatus != null">approve_status = #{approveStatus},</if>
- <if test="regno != null">regno = #{regno},</if>
- <if test="useno != null">useno = #{useno},</if>
- <if test="warnDate != null">warn_date = #{warnDate},</if>
- <if test="warnCycle != null">warn_cycle = #{warnCycle},</if>
- <if test="nextWarnDate != null">next_warn_date = #{nextWarnDate},</if>
- <if test="warnFlag != null">warn_flag = #{warnFlag},</if>
- <if test="createUnit != null">create_unit = #{createUnit},</if>
- <if test="burnMode != null">burn_mode = #{burnMode},</if>
- <if test="burnKind != null">burn_kind = #{burnKind},</if>
- <if test="ratedPower != null">rated_power = #{ratedPower},</if>
- <if test="desPressure != null">des_pressure = #{desPressure},</if>
- <if test="desTemp != null">des_temp = #{desTemp},</if>
- <if test="optPressure != null">opt_pressure = #{optPressure},</if>
- <if test="optTemp != null">opt_temp = #{optTemp},</if>
- <if test="checkUnit != null">check_unit = #{checkUnit},</if>
- <if test="checkConclusion != null">check_conclusion = #{checkConclusion},</if>
- <if test="model != null">model = #{model},</if>
- <if test="waterMode != null">water_mode = #{waterMode},</if>
- <if test="reportNo != null">report_no = #{reportNo},</if>
- <if test="approveTime != null">approve_time = #{approveTime},</if>
- <if test="changeTime != null">change_time = #{changeTime},</if>
- <if test="plantMaint != null">plant_maint = #{plantMaint},</if>
- <if test="outWarnDate != null">out_warn_date = #{outWarnDate},</if>
- <if test="outNextWarnDate != null">out_next_warn_date = #{outNextWarnDate},</if>
- <if test="outCheckConclusion != null">out_check_conclusion = #{outCheckConclusion},</if>
- <if test="outReportNo != null">out_report_no = #{outReportNo},</if>
- <if test="engineer != null">engineer = #{engineer},</if>
- <if test="isRepeat != null">is_repeat = #{isRepeat},</if>
- </trim>
- where id = #{id}
- </update>
- <update id="updateTSpecdevGlByHi" parameterType="TSpechiGl">
- update t_specdev_gl
- <trim prefix="SET" suffixOverrides=",">
- <if test="plantCode != null and plantCode != ''">plant_code = #{plantCode},</if>
- <if test="unit != null">unit = #{unit},</if>
- <if test="devname != null">devname = #{devname},</if>
- <if test="devno != null">devno = #{devno},</if>
- <if test="submitdate != null">submitdate = #{submitdate},</if>
- <if test="status != null">status = #{status},</if>
- <if test="delFlag != null">del_flag = #{delFlag},</if>
- <if test="createrCode != null">creater_code = #{createrCode},</if>
- <if test="createdate != null">createdate = #{createdate},</if>
- <if test="updaterCode != null">updater_code = #{updaterCode},</if>
- <if test="updatedate != null">updatedate = #{updatedate},</if>
- <if test="deptId != null">dept_id = #{deptId},</if>
- <if test="remarks != null">remarks = #{remarks},</if>
- <if test="remarks2 != null">remarks2 = #{remarks2},</if>
- <if test="approveStatus != null">approve_status = #{approveStatus},</if>
- <if test="regno != null">regno = #{regno},</if>
- <if test="useno != null">useno = #{useno},</if>
- <if test="warnDate != null">warn_date = #{warnDate},</if>
- <if test="warnCycle != null">warn_cycle = #{warnCycle},</if>
- <if test="nextWarnDate != null">next_warn_date = #{nextWarnDate},</if>
- <if test="warnFlag != null">warn_flag = #{warnFlag},</if>
- <if test="createUnit != null">create_unit = #{createUnit},</if>
- <if test="burnMode != null">burn_mode = #{burnMode},</if>
- <if test="burnKind != null">burn_kind = #{burnKind},</if>
- <if test="ratedPower != null">rated_power = #{ratedPower},</if>
- <if test="desPressure != null">des_pressure = #{desPressure},</if>
- <if test="desTemp != null">des_temp = #{desTemp},</if>
- <if test="optPressure != null">opt_pressure = #{optPressure},</if>
- <if test="optTemp != null">opt_temp = #{optTemp},</if>
- <if test="checkUnit != null">check_unit = #{checkUnit},</if>
- <if test="checkConclusion != null">check_conclusion = #{checkConclusion},</if>
- <if test="model != null">model = #{model},</if>
- <if test="waterMode != null">water_mode = #{waterMode},</if>
- <if test="reportNo != null">report_no = #{reportNo},</if>
- <if test="approveTime != null">approve_time = #{approveTime},</if>
- <if test="changeTime != null">change_time = #{changeTime},</if>
- <if test="plantMaint != null">plant_maint = #{plantMaint},</if>
- <if test="outWarnDate != null">out_warn_date = #{outWarnDate},</if>
- <if test="outNextWarnDate != null">out_next_warn_date = #{outNextWarnDate},</if>
- <if test="outCheckConclusion != null">out_check_conclusion = #{outCheckConclusion},</if>
- <if test="outReportNo != null">out_report_no = #{outReportNo},</if>
- <if test="engineer != null">engineer = #{engineer},</if>
- </trim>
- where id = #{devId}
- </update>
- <update id="deleteTSpecdevGlById" parameterType="Long">
- update t_specdev_gl set del_flag = 2 where id = #{id}
- </update>
- <update id="deleteTSpecdevGlByIds" parameterType="String">
- update t_specdev_gl set del_flag = 2 where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </update>
- <update id="duplicateTSpecdevGl" >
- UPDATE T_SPECDEV_GL set DEL_FLAG = 2
- where rowid !=( select max(rowid)
- from T_SPECDEV_GL b
- where b.DEVNO = T_SPECDEV_GL.DEVNO and b.plant_code = T_SPECDEV_GL.plant_code and T_SPECDEV_GL.DEL_FLAG = 0 and b.DEL_FLAG = 0
- and T_SPECDEV_GL.APPROVE_STATUS = 0
- )
- </update>
- </mapper>
|