123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351 |
- <?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.TIntactGjMapper">
-
- <resultMap type="TIntactGj" id="TIntactGjResult">
- <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="grade" column="grade" />
- <result property="designer" column="designer" />
- <result property="installer" column="installer" />
- <result property="material" column="material" />
- <result property="dia" column="dia" />
- <result property="scheduleNo" column="schedule_no" />
- <result property="length" column="length" />
- <result property="starting" column="starting" />
- <result property="ending" column="ending" />
- <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="medium" column="medium" />
- <result property="checkConclusion" column="check_conclusion" />
- <result property="checkUnit" column="check_unit" />
- <result property="safeClass" column="safe_class" />
- <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="engineer" column="engineer" />
- <result property="weldNumber" column="weld_number" />
- <result property="layingMethod" column="laying_method" />
- <result property="adiabatic" column="adiabatic" />
- <result property="antiCorrosion" column="anti_corrosion" />
- <result property="adiabaticThickness" column="adiabatic_thickness" />
- <result property="isDanger" column="is_danger" />
- <result property="installDate" column="install_date" />
- <result property="yearWarnDate" column="year_warn_date" />
- <result property="yearNextWarnDate" column="year_next_warn_date" />
- <result property="yearReportNo" column="year_report_no" />
- <result property="isRepeat" column="is_repeat" />
- <result property="type" column="type" />
- <result property="position" column="position" />
- <result property="deviceSize" column="device_size" />
- <result property="leakageMode" column="leakage_mode" />
- <result property="archives" column="archives" />
- <result property="deptName" column="dept_name" />
- </resultMap>
- <sql id="selectTIntactGjVo">
- 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.grade, d.designer, d.installer, d.material, d.dia, d.schedule_no, d.length, d.starting, d.ending, d.des_pressure, d.des_temp, d.opt_pressure, d.opt_temp, d.medium, d.check_conclusion, d.check_unit, d.safe_class, d.report_no, d.approve_time, d.change_time, d.plant_maint, d.engineer, d.weld_number, d.laying_method, d.adiabatic, d.anti_corrosion, d.adiabatic_thickness, d.is_danger, d.install_date, d.year_warn_date, d.year_next_warn_date, d.year_report_no, d.is_repeat, d.type, d.position, d.device_size, d.leakage_mode, d.archives ,s.dept_name from t_intact_gj d
- left join sys_dept s on s.dept_id = d.dept_id
- </sql>
- <select id="selectTIntactGjList" parameterType="TIntactGj" resultMap="TIntactGjResult">
- <include refid="selectTIntactGjVo"/>
- <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 d.status = #{status}</if>
- <if test="createrCode != null "> 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="grade != null and grade != ''"> and grade = #{grade}</if>
- <if test="designer != null and designer != ''"> and designer = #{designer}</if>
- <if test="installer != null and installer != ''"> and installer = #{installer}</if>
- <if test="material != null and material != ''"> and material = #{material}</if>
- <if test="dia != null and dia != ''"> and dia = #{dia}</if>
- <if test="scheduleNo != null and scheduleNo != ''"> and schedule_no = #{scheduleNo}</if>
- <if test="length != null and length != ''"> and length = #{length}</if>
- <if test="starting != null and starting != ''"> and starting = #{starting}</if>
- <if test="ending != null and ending != ''"> and ending = #{ending}</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="medium != null and medium != ''"> and medium = #{medium}</if>
- <if test="checkConclusion != null and checkConclusion != ''"> and check_conclusion = #{checkConclusion}</if>
- <if test="checkUnit != null and checkUnit != ''"> and check_unit = #{checkUnit}</if>
- <if test="safeClass != null and safeClass != ''"> and safe_class = #{safeClass}</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="engineer != null and engineer != ''"> and engineer = #{engineer}</if>
- <if test="weldNumber != null and weldNumber != ''"> and weld_number = #{weldNumber}</if>
- <if test="layingMethod != null and layingMethod != ''"> and laying_method = #{layingMethod}</if>
- <if test="adiabatic != null and adiabatic != ''"> and adiabatic = #{adiabatic}</if>
- <if test="antiCorrosion != null and antiCorrosion != ''"> and anti_corrosion = #{antiCorrosion}</if>
- <if test="adiabaticThickness != null and adiabaticThickness != ''"> and adiabatic_thickness = #{adiabaticThickness}</if>
- <if test="isDanger != null and isDanger != ''"> and is_danger = #{isDanger}</if>
- <if test="installDate != null "> and install_date = #{installDate}</if>
- <if test="yearWarnDate != null "> and year_warn_date = #{yearWarnDate}</if>
- <if test="yearNextWarnDate != null "> and year_next_warn_date = #{yearNextWarnDate}</if>
- <if test="yearReportNo != null and yearReportNo != ''"> and year_report_no = #{yearReportNo}</if>
- <if test="isRepeat != null "> and is_repeat = #{isRepeat}</if>
- <if test="type != null "> and type = #{type}</if>
- <if test="position != null and position != ''"> and position = #{position}</if>
- <if test="deviceSize != null "> and device_size = #{deviceSize}</if>
- <if test="leakageMode != null and leakageMode != ''"> and leakage_mode = #{leakageMode}</if>
- <if test="archives != null and archives != ''"> and archives = #{archives}</if>
- and d.del_flag = 0
- </where>
- <!-- 数据范围过滤 -->
- ${params.dataScope}
- </select>
-
- <select id="selectTIntactGjById" parameterType="Long" resultMap="TIntactGjResult">
- <include refid="selectTIntactGjVo"/>
- where id = #{id}
- </select>
-
- <insert id="insertTIntactGj" parameterType="TIntactGj">
- <selectKey keyProperty="id" resultType="long" order="BEFORE">
- SELECT seq_t_intact_gj.NEXTVAL as id FROM DUAL
- </selectKey>
- insert into t_intact_gj
- <trim prefix="(" suffix=")" suffixOverrides=",">
- <if test="id != null">id,</if>
- <if test="plantCode != null">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="grade != null">grade,</if>
- <if test="designer != null">designer,</if>
- <if test="installer != null">installer,</if>
- <if test="material != null">material,</if>
- <if test="dia != null">dia,</if>
- <if test="scheduleNo != null">schedule_no,</if>
- <if test="length != null">length,</if>
- <if test="starting != null">starting,</if>
- <if test="ending != null">ending,</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="medium != null">medium,</if>
- <if test="checkConclusion != null">check_conclusion,</if>
- <if test="checkUnit != null">check_unit,</if>
- <if test="safeClass != null">safe_class,</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="engineer != null">engineer,</if>
- <if test="weldNumber != null">weld_number,</if>
- <if test="layingMethod != null">laying_method,</if>
- <if test="adiabatic != null">adiabatic,</if>
- <if test="antiCorrosion != null">anti_corrosion,</if>
- <if test="adiabaticThickness != null">adiabatic_thickness,</if>
- <if test="isDanger != null">is_danger,</if>
- <if test="installDate != null">install_date,</if>
- <if test="yearWarnDate != null">year_warn_date,</if>
- <if test="yearNextWarnDate != null">year_next_warn_date,</if>
- <if test="yearReportNo != null">year_report_no,</if>
- <if test="isRepeat != null">is_repeat,</if>
- <if test="type != null">type,</if>
- <if test="position != null">position,</if>
- <if test="deviceSize != null">device_size,</if>
- <if test="leakageMode != null">leakage_mode,</if>
- <if test="archives != null">archives,</if>
- </trim>
- <trim prefix="values (" suffix=")" suffixOverrides=",">
- <if test="id != null">#{id},</if>
- <if test="plantCode != null">#{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="grade != null">#{grade},</if>
- <if test="designer != null">#{designer},</if>
- <if test="installer != null">#{installer},</if>
- <if test="material != null">#{material},</if>
- <if test="dia != null">#{dia},</if>
- <if test="scheduleNo != null">#{scheduleNo},</if>
- <if test="length != null">#{length},</if>
- <if test="starting != null">#{starting},</if>
- <if test="ending != null">#{ending},</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="medium != null">#{medium},</if>
- <if test="checkConclusion != null">#{checkConclusion},</if>
- <if test="checkUnit != null">#{checkUnit},</if>
- <if test="safeClass != null">#{safeClass},</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="engineer != null">#{engineer},</if>
- <if test="weldNumber != null">#{weldNumber},</if>
- <if test="layingMethod != null">#{layingMethod},</if>
- <if test="adiabatic != null">#{adiabatic},</if>
- <if test="antiCorrosion != null">#{antiCorrosion},</if>
- <if test="adiabaticThickness != null">#{adiabaticThickness},</if>
- <if test="isDanger != null">#{isDanger},</if>
- <if test="installDate != null">#{installDate},</if>
- <if test="yearWarnDate != null">#{yearWarnDate},</if>
- <if test="yearNextWarnDate != null">#{yearNextWarnDate},</if>
- <if test="yearReportNo != null">#{yearReportNo},</if>
- <if test="isRepeat != null">#{isRepeat},</if>
- <if test="type != null">#{type},</if>
- <if test="position != null">#{position},</if>
- <if test="deviceSize != null">#{deviceSize},</if>
- <if test="leakageMode != null">#{leakageMode},</if>
- <if test="archives != null">#{archives},</if>
- </trim>
- </insert>
- <update id="updateTIntactGj" parameterType="TIntactGj">
- update t_intact_gj
- <trim prefix="SET" suffixOverrides=",">
- <if test="plantCode != null">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="grade != null">grade = #{grade},</if>
- <if test="designer != null">designer = #{designer},</if>
- <if test="installer != null">installer = #{installer},</if>
- <if test="material != null">material = #{material},</if>
- <if test="dia != null">dia = #{dia},</if>
- <if test="scheduleNo != null">schedule_no = #{scheduleNo},</if>
- <if test="length != null">length = #{length},</if>
- <if test="starting != null">starting = #{starting},</if>
- <if test="ending != null">ending = #{ending},</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="medium != null">medium = #{medium},</if>
- <if test="checkConclusion != null">check_conclusion = #{checkConclusion},</if>
- <if test="checkUnit != null">check_unit = #{checkUnit},</if>
- <if test="safeClass != null">safe_class = #{safeClass},</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="engineer != null">engineer = #{engineer},</if>
- <if test="weldNumber != null">weld_number = #{weldNumber},</if>
- <if test="layingMethod != null">laying_method = #{layingMethod},</if>
- <if test="adiabatic != null">adiabatic = #{adiabatic},</if>
- <if test="antiCorrosion != null">anti_corrosion = #{antiCorrosion},</if>
- <if test="adiabaticThickness != null">adiabatic_thickness = #{adiabaticThickness},</if>
- <if test="isDanger != null">is_danger = #{isDanger},</if>
- <if test="installDate != null">install_date = #{installDate},</if>
- <if test="yearWarnDate != null">year_warn_date = #{yearWarnDate},</if>
- <if test="yearNextWarnDate != null">year_next_warn_date = #{yearNextWarnDate},</if>
- <if test="yearReportNo != null">year_report_no = #{yearReportNo},</if>
- <if test="isRepeat != null">is_repeat = #{isRepeat},</if>
- <if test="type != null">type = #{type},</if>
- <if test="position != null">position = #{position},</if>
- <if test="deviceSize != null">device_size = #{deviceSize},</if>
- <if test="leakageMode != null">leakage_mode = #{leakageMode},</if>
- <if test="archives != null">archives = #{archives},</if>
- </trim>
- where id = #{id}
- </update>
- <update id="deleteTIntactGjById" parameterType="Long">
- update t_intact_gj set del_flag = 2 where id = #{id}
- </update>
- <update id="deleteTIntactGjByIds" parameterType="String">
- update t_intact_gj set del_flag = 2 where id in
- <foreach item="id" collection="array" open="(" separator="," close=")">
- #{id}
- </foreach>
- </update>
-
- </mapper>
|