懒羊羊
2024-01-10 a556270e96bc6e7fa4202c466d57cc75f778c614
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
<?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="${package.Mapper}.${table.mapperName}">
 
#if(${enableCache})
    <!-- 开启二级缓存 -->
    <cache type="org.mybatis.caches.ehcache.LoggingEhcache"/>
 
#end
#if(${baseResultMap})
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="${package.Entity}.${entity}">
#foreach($field in ${table.fields})
#if(${field.keyFlag})##生成主键排在第一位
        <id column="${field.name}" property="${field.propertyName}" />
#end
#end
#foreach($field in ${table.commonFields})##生成公共字段
    <result column="${field.name}" property="${field.propertyName}" />
#end
#foreach($field in ${table.fields})
#if(!${field.keyFlag})##生成普通字段
        <result column="${field.name}" property="${field.propertyName}" />
#end
#end
    </resultMap>
 
#end
#if(${baseColumnList})
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        ${tableRebuild}
    </sql>
 
#end
 
    <select id="customList" resultType="${package.EntitySpecResult}.${entity}Result" parameterType="${package.EntitySpecParams}.${entity}Param">
        select
        <include refid="Base_Column_List"/>
        from ${table.name} where 1 = 1
        #foreach($field in ${mapperConditions})
            <if test="paramCondition.${field.camelFieldName} != null and paramCondition.${field.camelFieldName} != ''">
                and ${field.columnName} like CONCAT('%',#{paramCondition.${field.camelFieldName}},'%')
            </if>
        #end
    </select>
 
    <select id="customMapList" resultType="map" parameterType="${package.EntitySpecParams}.${entity}Param">
        select
        <include refid="Base_Column_List"/>
        from ${table.name} where 1 = 1
        #foreach($field in ${mapperConditions})
            <if test="paramCondition.${field.camelFieldName} != null and paramCondition.${field.camelFieldName} != ''">
                and ${field.columnName} like CONCAT('%',#{paramCondition.${field.camelFieldName}},'%')
            </if>
        #end
    </select>
 
    <select id="customPageList" resultType="${package.EntitySpecResult}.${entity}Result" parameterType="${package.EntitySpecParams}.${entity}Param">
        select
        <include refid="Base_Column_List"/>
        from ${table.name} where 1 = 1
        #foreach($field in ${mapperConditions})
            <if test="paramCondition.${field.camelFieldName} != null and paramCondition.${field.camelFieldName} != ''">
                and ${field.columnName} like CONCAT('%',#{paramCondition.${field.camelFieldName}},'%')
            </if>
        #end
    </select>
 
    <select id="customPageMapList" resultType="map" parameterType="${package.EntitySpecParams}.${entity}Param">
        select
        <include refid="Base_Column_List"/>
        from ${table.name} where 1 = 1
        #foreach($field in ${mapperConditions})
            <if test="paramCondition.${field.camelFieldName} != null and paramCondition.${field.camelFieldName} != ''">
                and ${field.columnName} like CONCAT('%',#{paramCondition.${field.camelFieldName}},'%')
            </if>
        #end
    </select>
 
</mapper>