智慧保安后台管理项目备份
tangzy
2021-11-09 2cdfc2901063cf4e7133091e2f82a89d41f3f50d
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
<?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.recordk.mapper.RecordkMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="recordkResultMap" type="org.springblade.modules.recordk.entity.Recordk">
        <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="perid" property="perid"/>
        <result column="offices" property="offices"/>
        <result column="officetime" property="officetime"/>
        <result column="deptid" property="deptid"/>
        <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"/>
    </resultMap>
 
 
    <select id="selectRecordkPage" resultMap="recordkResultMap">
        select * from sys_recordk where 1=1
        <if test="recordk.ptype!=null and recordk.ptype!=''">
            and  ptype=#{recordk.ptype}
        </if>
        <if test="recordk.usetype=='1'.toString()">
            and jurisdiction in(${jurisdiction})
        </if>
        <if test="recordk.usetype=='2'.toString()">
            and  jurisdiction=#{recordk.jurisdiction}
        </if>
    </select>
 
</mapper>