forked from integrated_whb/integrated_whb
272 lines
7.6 KiB
XML
272 lines
7.6 KiB
XML
<?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.zcloud.mapper.datasource.hiddenDangerCheckStandard.CustomHiddenCheckMapper">
|
|
|
|
<!--表名 -->
|
|
<sql id="tableName">
|
|
BUS_HIDDENDANGERCHECKSTANDARD_HIDDENCHECK
|
|
</sql>
|
|
|
|
<!--数据字典表名 -->
|
|
<sql id="dicTableName">
|
|
SYS_DICTIONARIES
|
|
</sql>
|
|
|
|
<!-- 字段 -->
|
|
<sql id="Field">
|
|
f.HIDDEN_ID,
|
|
f.DEPARTMENT_ID,
|
|
f.USER_ID,
|
|
f.STATUS,
|
|
f.CHECK_TIME,
|
|
f.CHECKDESCR,
|
|
f.HIDDENCHECK_ID
|
|
</sql>
|
|
|
|
<!-- 字段用于新增 -->
|
|
<sql id="Field2">
|
|
HIDDEN_ID,
|
|
DEPARTMENT_ID,
|
|
USER_ID,
|
|
STATUS,
|
|
CHECK_TIME,
|
|
CHECKDESCR,
|
|
HIDDENCHECK_ID
|
|
</sql>
|
|
|
|
<!-- 字段值 -->
|
|
<sql id="FieldValue">
|
|
#{HIDDEN_ID},
|
|
#{DEPARTMENT_ID},
|
|
#{USER_ID},
|
|
#{STATUS},
|
|
#{CHECK_TIME},
|
|
#{CHECKDESCR},
|
|
#{HIDDENCHECK_ID}
|
|
</sql>
|
|
|
|
<!-- 新增-->
|
|
<insert id="save" parameterType="pd">
|
|
insert into
|
|
<include refid="tableName"></include>
|
|
(
|
|
<include refid="Field2"></include>
|
|
) values (
|
|
<include refid="FieldValue"></include>
|
|
)
|
|
</insert>
|
|
|
|
<!-- 删除-->
|
|
<delete id="delete" parameterType="pd">
|
|
delete from
|
|
<include refid="tableName"></include>
|
|
where
|
|
HIDDEN_ID = #{HIDDEN_ID}
|
|
</delete>
|
|
|
|
<!-- 修改 -->
|
|
<update id="edit" parameterType="pd">
|
|
update
|
|
<include refid="tableName"></include>
|
|
set
|
|
HIDDEN_ID = #{HIDDEN_ID},
|
|
DEPARTMENT_ID = #{DEPARTMENT_ID},
|
|
USER_ID = #{USER_ID},
|
|
STATUS = #{STATUS},
|
|
CHECK_TIME = #{CHECK_TIME},
|
|
CHECKDESCR = #{CHECKDESCR},
|
|
HIDDENCHECK_ID = HIDDENCHECK_ID
|
|
where
|
|
HIDDENCHECK_ID = #{HIDDENCHECK_ID}
|
|
</update>
|
|
|
|
<!-- 通过ID获取数据 -->
|
|
<select id="findById" parameterType="pd" resultType="pd">
|
|
select
|
|
<include refid="Field"></include>
|
|
from
|
|
<include refid="tableName"></include> f
|
|
where
|
|
f.HIDDENCHECK_ID = #{HIDDENCHECK_ID}
|
|
</select>
|
|
|
|
<!-- 通过ID获取数据 -->
|
|
<select id="findByHidden" parameterType="pd" resultType="pd">
|
|
select
|
|
<include refid="Field"></include>
|
|
from
|
|
<include refid="tableName"></include> f
|
|
where
|
|
f.HIDDEN_ID = #{HIDDEN_ID} and f.USER_ID = #{CHECKOR}
|
|
</select>
|
|
|
|
<!-- 列表 -->
|
|
<select id="datalistPage" parameterType="page" resultType="pd">
|
|
select
|
|
<include refid="Field"></include>
|
|
from
|
|
<include refid="tableName"></include> f
|
|
where f.ISDELETE = '0'
|
|
<if test="pd.KEYWORDS != null and pd.KEYWORDS != ''"><!-- 关键词检索 -->
|
|
and
|
|
(
|
|
<!-- 根据需求自己加检索条件
|
|
字段1 LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
|
|
or
|
|
字段2 LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')
|
|
-->
|
|
)
|
|
</if>
|
|
</select>
|
|
|
|
<!-- 列表(全部) -->
|
|
<select id="listAll" parameterType="pd" resultType="pd">
|
|
select
|
|
<include refid="Field"></include>,
|
|
u.NAME CHECKORNAME,
|
|
d.NAME CHECKDEPTNAME
|
|
from
|
|
<include refid="tableName"></include> f
|
|
left join sys_user u on u.USER_ID = f.USER_ID
|
|
left join oa_department d on d.DEPARTMENT_ID = f.DEPARTMENT_ID
|
|
where 1=1
|
|
<if test="HIDDEN_ID != null and HIDDEN_ID != ''"><!-- 关键词检索 -->
|
|
and
|
|
f.HIDDEN_ID=#{HIDDEN_ID}
|
|
</if>
|
|
</select>
|
|
|
|
<!-- 批量删除 -->
|
|
<delete id="deleteAll" parameterType="String">
|
|
update
|
|
<include refid="tableName"></include>
|
|
set
|
|
ISDELETE = '1'
|
|
where
|
|
HIDDENCHECK_ID in
|
|
<foreach item="item" index="index" collection="ArrayDATA_IDS" open="(" separator="," close=")">
|
|
#{item}
|
|
</foreach>
|
|
</delete>
|
|
|
|
<!-- 列表(全部) -->
|
|
<select id="listExport" parameterType="pd" resultType="com.zcloud.entity.PageData">
|
|
select
|
|
<include refid="Field"></include>,
|
|
su.NAME as CHECKORNAME,
|
|
od.NAME as CHECKDEPTNAME
|
|
from
|
|
<include refid="tableName"></include> f
|
|
left join sys_user su on f.USER_ID = su.USER_ID
|
|
left join oa_department od on f.DEPARTMENT_ID = od.DEPARTMENT_ID
|
|
where 1=1
|
|
and EXISTS (
|
|
select
|
|
1
|
|
from bus_hidden h
|
|
where
|
|
h.hidden_id = f.hidden_id and
|
|
h.ISDELETE = '0' and h.STATE != '0'
|
|
<if test="SOURCE != null and SOURCE != ''">
|
|
and h.SOURCE=#{SOURCE}
|
|
</if>
|
|
<if test="IS_CANCEL != null and IS_CANCEL != ''"><!-- 是否作废 -->
|
|
and h.CHECKRECORD_ID is null
|
|
</if>
|
|
<if test="CORPINFO_ID != null and CORPINFO_ID != ''">
|
|
and h.CORPINFO_ID = #{CORPINFO_ID}
|
|
</if>
|
|
<if test="FIND_CHECKRECORD_ID != null and FIND_CHECKRECORD_ID != ''">
|
|
and h.CHECKRECORD_ID=#{CHECKRECORD_ID}
|
|
</if>
|
|
<if test="KEYWORDS != null and KEYWORDS != ''"><!-- 关键词检索 -->
|
|
and
|
|
(
|
|
h.RISK_UNIT LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
|
|
or
|
|
h.RISK_POSITION LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
|
|
or
|
|
h.CHECK_CONTENT LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
|
|
or
|
|
h.HIDDENDESCR LIKE CONCAT(CONCAT('%', #{KEYWORDS}),'%')
|
|
)
|
|
</if>
|
|
<if test="HIDDENDESCR != null and HIDDENDESCR != ''"><!-- 关键词检索 -->
|
|
and h.HIDDENDESCR LIKE CONCAT(CONCAT('%', #{HIDDENDESCR}),'%')
|
|
</if>
|
|
<if test="ISQUALIFIED != null and ISQUALIFIED != ''"><!-- 关键词检索 -->
|
|
and h.ISQUALIFIED = #{ISQUALIFIED}
|
|
</if>
|
|
<if test="DEPARTMENT_ID != null and DEPARTMENT_ID != ''"><!-- 关键词检索 -->
|
|
and h.HIDDENFINDDEPT = #{DEPARTMENT_ID}
|
|
</if>
|
|
<if test="HIDDENLEVEL != null and HIDDENLEVEL != ''"><!-- 关键词检索 -->
|
|
and h.HIDDENLEVEL = #{HIDDENLEVEL}
|
|
</if>
|
|
<if test="STARTTIME != null and STARTTIME != ''"><!-- 关键词检索 -->
|
|
and h.CREATTIME >= #{STARTTIME}
|
|
</if>
|
|
<if test="ENDTIME != null and ENDTIME != ''">
|
|
and h.CREATTIME <= #{ENDTIME}
|
|
</if>
|
|
<if test="STATE != null and STATE !='' and STATE != 0" >
|
|
and h.STATE = #{STATE}
|
|
</if>
|
|
<if test="SELF_USER_ID != null and SELF_USER_ID != ''">
|
|
and h.CREATOR = #{SELF_USER_ID}
|
|
</if>
|
|
<if test="DISPOSESTATE != null and DISPOSESTATE != ''"><!-- 关键词检索 -->
|
|
<if test="DISPOSESTATE==2"><!-- 整改 -->
|
|
and h.RECTIFICATIONOR = #{SELFUSERID}
|
|
and h.STATE in('1','-1')
|
|
</if>
|
|
<if test="DISPOSESTATE==3"><!-- 验收 -->
|
|
and h.STATE = '3'
|
|
and (select count(1) from BUS_HIDDENCHECK bh where bh.USER_ID=#{SELFUSERID} and bh.HIDDEN_ID=h.HIDDEN_ID and bh.STATUS=0)>0
|
|
</if>
|
|
<if test="DISPOSESTATE==4"><!-- 已验收 -->
|
|
and h.STATE = '4'
|
|
and (h.RECTIFICATIONOR = #{SELFUSERID} or h.CREATOR = #{SELFUSERID} or (select count(1) from BUS_HIDDENCHECK bh where bh.USER_ID=#{SELFUSERID} and bh.HIDDEN_ID=h.HIDDEN_ID)>0)
|
|
</if>
|
|
<if test="DISPOSESTATE==-1"><!-- 所有 -->
|
|
<if test="CORPINFO_ID != null and CORPINFO_ID != ''"><!-- 关键词检索 -->
|
|
and
|
|
h.CORPINFO_ID = #{CORPINFO_ID}
|
|
</if>
|
|
<if test="STATE != null and STATE != ''"><!-- 关键词检索 -->
|
|
and
|
|
h.STATE = #{STATE}
|
|
</if>
|
|
</if>
|
|
</if>
|
|
<if test="HIDDEN_IDS != null and HIDDEN_IDS != ''"><!-- 关键词检索 -->
|
|
and
|
|
(
|
|
h.HIDDEN_ID in
|
|
<foreach item="item" index="index" collection="HIDDEN_IDS" open="(" separator="," close=")">
|
|
#{item}
|
|
</foreach>
|
|
)
|
|
</if>
|
|
)
|
|
</select>
|
|
|
|
<!-- 通过隐患ID查询验收信息列表 -->
|
|
<select id="listAllByIds" parameterType="String" resultType="com.zcloud.entity.PageData">
|
|
select
|
|
<include refid="Field"></include>,su.NAME,od.NAME DEPARTMENT_NAME
|
|
from
|
|
<include refid="tableName"></include> f
|
|
left join sys_user su on su.USER_ID = f.USER_ID
|
|
left join oa_department od on od.DEPARTMENT_ID = f.DEPARTMENT_ID
|
|
where 1=1
|
|
<if test="ArrayDATA_IDS != null and ArrayDATA_IDS != ''"><!-- 关键词检索 -->
|
|
and f.HIDDEN_ID in
|
|
<foreach item="item" index="index" collection="ArrayDATA_IDS" open="(" separator="," close=")">
|
|
#{item}
|
|
</foreach>
|
|
</if>
|
|
|
|
</select>
|
|
</mapper>
|