智慧保安后台管理项目备份
zhongrj
2024-05-24 b5960d1968e007b91d4d33dd7cbb74f1b566f2c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?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="org.springblade.modules.coinspect.mapper.CoinspectMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="coinspectResultMap" type="org.springblade.modules.coinspect.vo.CoinspectVO">
        <id column="id" property="id"/>
        <result column="examiner_id" property="examinerId"/>
        <result column="reviewed_dept_id" property="reviewedDeptId"/>
        <result column="examiner_dept_id" property="examinerDeptId"/>
        <result column="reviewTime" property="reviewtime"/>
        <result column="insid" property="insid"/>
        <result column="results" property="results"/>
        <result column="url" property="url"/>
    </resultMap>
 
    <!--自定义分页数据-->
    <select id="selectCoinspectPage" resultType="org.springblade.modules.coinspect.vo.CoinspectVO">
        select
        sc.*,
        bu.real_name realName,
        bd.dept_name examinerDeptName,
        bd1.dept_name reviewedDeptName
        from
        sys_coinspect sc
        left join
        blade_user bu
        on
        bu.id = sc.examiner_id
        left join
        blade_dept bd
        on
        bd.id = sc.examiner_dept_id
        left join
        blade_dept bd1
        on
        bd1.id = sc.reviewed_dept_id
        left join
        sys_information si
        on
        si.departmentid = bu.dept_id
        left join
        sys_jurisdiction sj
        on
        sj.id = si.jurisdiction
        where 1 = 1
        <if test="coinspect.jurisdiction!=null and coinspect.jurisdiction!='' and coinspect.jurisdiction!='1372091709474910209'">
            and (sj.id = #{coinspect.jurisdiction} or sj.parent_id = #{coinspect.jurisdiction})
        </if>
        <if test="coinspect.realName!=null and coinspect.realName!=''">
            and bu.real_name like concat('%',#{coinspect.realName},'%')
        </if>
        <if test="coinspect.examinerDeptName!=null and coinspect.examinerDeptName!=''">
            and bd.dept_name like concat('%',#{coinspect.examinerDeptName},'%')
        </if>
        <if test="coinspect.reviewedDeptName!=null and coinspect.reviewedDeptName!=''">
            and bd1.dept_name like concat('%',#{coinspect.reviewedDeptName},'%')
        </if>
        <if test="coinspect.results!=null and coinspect.results!=''">
            and sc.results like concat('%',#{coinspect.results},'%')
        </if>
        <if test="coinspect.startTime!=null and coinspect.startTime!=''">
            and sc.reviewTime &gt;= #{coinspect.startTime}
        </if>
        <if test="coinspect.endTime!=null and coinspect.endTime!=''">
            and sc.reviewTime &lt;= #{coinspect.endTime}
        </if>
        <if test="coinspect.endTime!=null and coinspect.endTime!=''">
            and sc.reviewTime &lt;= #{coinspect.endTime}
        </if>
    </select>
 
    <!--导出单位检查信息-->
    <select id="exportCoinspect" resultType="org.springblade.modules.coinspect.excel.CoinspectExcel">
        select
        bu.real_name realName,
        bd1.dept_name reviewedDeptName,
        bd.dept_name examinerDeptName,
        sc.reviewTime reviewtime,
        sc.insid content,
        sc.results result
        from
        sys_coinspect sc
        left join
        blade_user bu
        on
        bu.id = sc.examiner_id
        left join
        blade_dept bd
        on
        bd.id = sc.examiner_dept_id
        left join
        blade_dept bd1
        on
        bd1.id = sc.reviewed_dept_id
        left join
        sys_information si
        on
        si.departmentid = bu.dept_id
        left join
        sys_jurisdiction sj
        on
        sj.id = si.jurisdiction
        where 1 = 1
        <if test="coinspect.jurisdiction!=null and coinspect.jurisdiction!='' and coinspect.jurisdiction!='1372091709474910209'">
            and (sj.id = #{coinspect.jurisdiction} or sj.parent_id = #{coinspect.jurisdiction})
        </if>
        <if test="coinspect.realName!=null and coinspect.realName!=''">
            and bu.real_name like concat('%',#{coinspect.realName},'%')
        </if>
        <if test="coinspect.examinerDeptName!=null and coinspect.examinerDeptName!=''">
            and bd.dept_name like concat('%',#{coinspect.examinerDeptName},'%')
        </if>
        <if test="coinspect.reviewedDeptName!=null and coinspect.reviewedDeptName!=''">
            and bd1.dept_name like concat('%',#{coinspect.reviewedDeptName},'%')
        </if>
        <if test="coinspect.results!=null and coinspect.results!=''">
            and sc.results like concat('%',#{coinspect.results},'%')
        </if>
        <if test="coinspect.startTime!=null and coinspect.startTime!=''">
            and sc.reviewTime &gt;= #{coinspect.startTime}
        </if>
        <if test="coinspect.endTime!=null and coinspect.endTime!=''">
            and sc.reviewTime &lt;= #{coinspect.endTime}
        </if>
    </select>
 
</mapper>