智慧保安后台管理-外网项目备份
钟日健
2026-06-01 62eb499b0c969f246d3245d1429a97da4de1ce28
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<?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.permit.mapper.PermitMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="permitResultMap" type="org.springblade.modules.permit.entity.Permit">
        <id column="id" property="id"/>
        <result column="creditCode" property="creditcode"/>
        <result column="enterpriseName" property="enterprisename"/>
        <result column="representative" property="representative"/>
        <result column="establishtime" property="establishtime"/>
        <result column="registeredCapital" property="registeredcapital"/>
        <result column="organizationCode" property="organizationcode"/>
        <result column="registrationNumber" property="registrationnumber"/>
        <result column="identificationNumber" property="identificationnumber"/>
        <result column="enterprises" property="enterprises"/>
        <result column="address" property="address"/>
        <result column="business" property="business"/>
        <result column="region" property="region"/>
        <result column="registration" property="registration"/>
        <result column="industry" property="industry"/>
        <result column="type" property="type"/>
        <result column="permitime" property="permitime"/>
        <result column="deptid" property="deptid"/>
        <result column="ptype" property="ptype"/>
        <result column="storage" property="storage"/>
        <result column="cardid" property="cardid"/>
        <result column="representativecell" property="representativecell"/>
        <result column="contacts" property="contacts"/>
        <result column="contactscell" property="contactscell"/>
        <result column="approve" property="approve"/>
        <result column="jurisdiction" property="jurisdiction"/>
        <result column="overtime" property="overtime"/>
    </resultMap>
 
 
    <select id="selectPermitPage" resultMap="permitResultMap">
        select si.* from sys_permit si left join
        sys_jurisdiction sj
        on
        sj.id = si.jurisdiction where 1=1
        <if test="permit.ptype!=null and permit.ptype!=''">
              and  si.ptype=#{permit.ptype}
        </if>
        <if test="permit.jurisdiction!=null and permit.jurisdiction != '' and permit.jurisdiction!='1372091709474910209'">
            and (sj.id = #{permit.jurisdiction} or sj.parent_id = #{permit.jurisdiction})
        </if>
        <if test="permit.cardid!=null and permit.cardid != ''">
            and  si.cardid=#{permit.cardid}
        </if>
<!--        <if test="permit.usetype=='1'.toString()">-->
<!--            and si.jurisdiction in(${jurisdiction})-->
<!--        </if>-->
<!--        <if test="permit.usetype=='2'.toString()">-->
<!--            and  si.jurisdiction=#{permit.jurisdiction}-->
<!--        </if>-->
<!--        <if test="permit.usetype==''.toString()">-->
<!--            and  si.jurisdiction=#{permit.jurisdiction}-->
<!--        </if>-->
    </select>
 
    <select id="selectIn" resultType="java.util.HashMap">
        select *
        from sys_permit
        where cardid = #{cardid}
          and ptype = #{type }
    </select>
 
    <insert id="insertPer" useGeneratedKeys="true" keyProperty="id">
        insert into sys_permit (creditcode, enterprisename,
                                representative, establishtime, permitime, registeredcapital,
                                organizationcode, registrationnumber,
                                identificationnumber, enterprises, address, business,
                                region, registration, industry, type, deptid,
                                ptype, storage, cardid,
                                representativecell, contacts, contactscell)
        values (#{permit.creditcode}, #{permit.enterprisename},
                #{permit.representative}, #{permit.establishtime}, #{permit.permitime}, #{permit.registeredcapital},
                #{permit.organizationcode}, #{permit.registrationnumber},
                #{permit.identificationnumber}, #{permit.enterprises}, #{permit.address}, #{permit.business},
                #{permit.region}, #{permit.registration}, #{permit.industry}, #{permit.type}, #{permit.deptid},
                #{permit.ptype}, #{permit.storage}, #{permit.cardid},
                #{permit.representativecell}, #{permit.contacts}, #{permit.contactscell})
    </insert>
 
    <select id="selectRecordDetail" resultType="org.springblade.modules.permit.dto.PermitDTO">
        select
        id,
        ptype,
        type,
        permitime,
        cardid,
        representativecell,
        contacts,
        contactscell,
        jurisdiction,
        industry,
        registration,
        creditcode,
        enterprisename,
        representative,
        address,
        overtime
        from sys_permit
        where cardid = #{permit.cardid}
        and ptype = #{permit.ptype}
    </select>
 
    <sql id="permitRecord">
        id,
        ptype,
        type,
        permitime,
        cardid,
        enterprisename,
        approve,
        representative,
        overtime
    </sql>
 
    <!--查询分公司,自招保安单位备案集合信息-->
    <select id="selectRecordList" resultType="org.springblade.modules.permit.dto.PermitRecordDTO">
        select
        <include refid="permitRecord"/>
        from sys_record
        where 1=1
        <if test="permit.cardid!=null and permit.cardid!=''">
            and cardid = #{permit.cardid}
        </if>
        <if test="permit.ptype!=null and permit.ptype!=''">
            and ptype = #{permit.ptype}
        </if>
    </select>
 
    <!--查询保安服务公司,培训单位许可设立集合信息-->
    <select id="selectPermitList" resultType="org.springblade.modules.permit.dto.PermitRecordDTO">
        select
        <include refid="permitRecord"/>
        from sys_permit
        where 1=1
        <if test="permit.cardid!=null and permit.cardid!=''">
            and cardid = #{permit.cardid}
        </if>
        <if test="permit.ptype!=null and permit.ptype!=''">
            and ptype = #{permit.ptype}
        </if>
    </select>
 
    <!--查询跨区域经营备案集合信息-->
    <select id="selectRecordkList" resultType="org.springblade.modules.permit.dto.PermitRecordDTO">
        select
        <include refid="permitRecord"/>
        from sys_recordk
        where 1=1
        <if test="permit.cardid!=null and permit.cardid!=''">
            and cardid = #{permit.cardid}
        </if>
        <if test="permit.ptype!=null and permit.ptype!=''">
            and ptype = #{permit.ptype}
        </if>
    </select>
 
    <!--查询保安单位法人变更集合信息-->
    <select id="selectRecordLegalpersonList" resultType="org.springblade.modules.permit.dto.PermitRecordDTO">
        select
        <include refid="permitRecord"/>
        from sys_record_legalperson
        where 1=1
        <if test="permit.cardid!=null and permit.cardid!=''">
            and cardid = #{permit.cardid}
        </if>
        <if test="permit.ptype!=null and permit.ptype!=''">
            and ptype = #{permit.ptype}
        </if>
    </select>
</mapper>