123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- <?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.intact.mapper.TIntactGylMapper">
-
- <resultMap type="TIntactGyl" id="TIntactGylResult">
- <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="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="type" column="type" />
- <result property="isRepeat" column="is_repeat" />
- <result property="position" column="position" />
- <result property="deviceSize" column="device_size" />
- <result property="medium" column="medium" />
- <result property="leakageMode" column="leakage_mode" />
- <result property="dataNo" column="data_no" />
- <result property="bookNo" column="book_no" />
- <result property="manufactor" column="manufactor" />
- <result property="deptName" column="dept_name" />
- </resultMap>
- <sql id="selectTIntactGylVo">
- 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.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, d.type, d.is_repeat, d.position, d.device_size, d.medium, d.leakage_mode, d.data_no, d.book_no, d.manufactor ,s.dept_name from t_intact_gyl d
- left join sys_dept s on s.dept_id = d.dept_id
- </sql>
- <select id="selectTIntactGylList" parameterType="TIntactGyl" resultMap="TIntactGylResult">
- <include refid="selectTIntactGylVo"/>
- <where>
- <if test="plantCode != null and plantCode != ''"> and plant_code = #{plantCode}</if>
- <if test="unit != null and unit != ''"> and unit = #{unit}</if>
- <if test="devname != null and devname != ''"> and devname like concat(concat('%', #{devname}), '%')</if>
- <if test="devno != null and devno != ''"> and devno = #{devno}</if>
- <if test="submitdate != null "> and submitdate = #{submitdate}</if>
- <if test="status != null "> and status = #{status}</if>
- <if test="createrCode != null and createrCode != ''"> and creater_code = #{createrCode}</if>
- <if test="createdate != null "> and createdate = #{createdate}</if>
- <if test="updaterCode != null "> and updater_code = #{updaterCode}</if>
- <if test="updatedate != null "> and updatedate = #{updatedate}</if>
- <if test="deptId != null "> and dept_id = #{deptId}</if>
- <if test="remarks != null and remarks != ''"> and remarks = #{remarks}</if>
- <if test="approveStatus != null "> and approve_status = #{approveStatus}</if>
- <if test="regno != null and regno != ''"> and regno = #{regno}</if>
- <if test="useno != null and useno != ''"> and useno = #{useno}</if>
- <if test="warnDate != null "> and warn_date = #{warnDate}</if>
- <if test="warnCycle != null "> and warn_cycle = #{warnCycle}</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="outWarnDate != null "> and out_warn_date = #{outWarnDate}</if>
- <if test="outNextWarnDate != null "> and out_next_warn_date = #{outNextWarnDate}</if>
- <if test="outCheckConclusion != null and outCheckConclusion != ''"> and out_check_conclusion = #{outCheckConclusion}</if>
- <if test="outReportNo != null and outReportNo != ''"> and out_report_no = #{outReportNo}</if>
- <if test="engineer != null and engineer != ''"> and engineer = #{engineer}</if>
- <if test="type != null "> and type = #{type}</if>
- <if test="isRepeat != null "> and is_repeat = #{isRepeat}</if>
- <if test="position != null and position != ''"> and position = #{position}</if>
- <if test="deviceSize != null and deviceSize != ''"> and device_size = #{deviceSize}</if>
- <if test="medium != null and medium != ''"> and medium = #{medium}</if>
- <if test="leakageMode != null and leakageMode != ''"> and leakage_mode = #{leakageMode}</if>
- <if test="dataNo != null and dataNo != ''"> and data_no = #{dataNo}</if>
- <if test="bookNo != null and bookNo != ''"> and book_no = #{bookNo}</if>
- <if test="manufactor != null and manufactor != ''"> and manufactor = #{manufactor}</if>
- and d.del_flag = 0
- </where>
- <!-- 数据范围过滤 -->
- ${params.dataScope}
- </select>
-
- <select id="selectTIntactGylById" parameterType="Long" resultMap="TIntactGylResult">
- <include refid="selectTIntactGylVo"/>
- where id = #{id}
- </select>
-
- <insert id="insertTIntactGyl" parameterType="TIntactGyl">
- <selectKey keyProperty="id" resultType="long" order="BEFORE">
- SELECT seq_t_intact_gyl.NEXTVAL as id FROM DUAL
- </selectKey>
- insert into t_intact_gyl
- <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="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>
- <if test="type != null">type,</if>
- <if test="isRepeat != null">is_repeat,</if>
- <if test="position != null">position,</if>
- <if test="deviceSize != null">device_size,</if>
- <if test="medium != null">medium,</if>
- <if test="leakageMode != null">leakage_mode,</if>
- <if test="dataNo != null">data_no,</if>
- <if test="bookNo != null">book_no,</if>
- <if test="manufactor != null">manufactor,</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="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>
- <if test="type != null">#{type},</if>
- <if test="isRepeat != null">#{isRepeat},</if>
- <if test="position != null">#{position},</if>
- <if test="deviceSize != null">#{deviceSize},</if>
- <if test="medium != null">#{medium},</if>
- <if test="leakageMode != null">#{leakageMode},</if>
- <if test="dataNo != null">#{dataNo},</if>
- <if test="bookNo != null">#{bookNo},</if>
- <if test="manufactor != null">#{manufactor},</if>
- </trim>
- </insert>
- <update id="updateTIntactGyl" parameterType="TIntactGyl">
- update t_intact_gyl
- <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="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="type != null">type = #{type},</if>
- <if test="isRepeat != null">is_repeat = #{isRepeat},</if>
- <if test="position != null">position = #{position},</if>
- <if test="deviceSize != null">device_size = #{deviceSize},</if>
- <if test="medium != null">medium = #{medium},</if>
- <if test="leakageMode != null">leakage_mode = #{leakageMode},</if>
- <if test="dataNo != null">data_no = #{dataNo},</if>
- <if test="bookNo != null">book_no = #{bookNo},</if>
- <if test="manufactor != null">manufactor = #{manufactor},</if>
- </trim>
- where id = #{id}
- </update>
- <update id="deleteTIntactGylById" parameterType="Long">
- update t_intact_gyl set del_flag = -1 where id = #{id}
- </update>
- <update id="deleteTIntactGylByIds" parameterType="String">
- update t_intact_gyl set del_flag = -1 where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </update>
-
- </mapper>
|