liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<?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="cn.com.basic.role.entity.SysRole">
 
  <resultMap id="BaseResultMap" type="cn.com.basic.role.entity.SysRole" >
    <id column="id" property="id" jdbcType="VARCHAR" />
    <result column="name" property="name" jdbcType="VARCHAR" />
    <result column="data_range_type" property="dataRangeType" jdbcType="TINYINT" />
    <result column="org_id" jdbcType="VARCHAR" property="orgId" />
    <result column="comment" jdbcType="VARCHAR" property="comment" />
    <result column="status" property="status" jdbcType="TINYINT" />
    <result column="is_valid" property="isValid" jdbcType="TINYINT" />
    <result column="update_time" property="updateTime" jdbcType="TIMESTAMP" />
    <result column="update_user_id" property="updateUserId" jdbcType="VARCHAR" />
    <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
    <result column="create_user_id" jdbcType="VARCHAR" property="createUserId" />
  </resultMap>
  <sql id="Base_Column_List" >
    id, name, org_id, comment, data_range_type, status, is_valid, update_time, update_user_id
  </sql>
 
  <sql id="Base_Where_Clause">
    <where>
      <trim prefixOverrides="and">
 
        <if test="id != null"> and ID = #{id}</if>
        <if test="name != null" >
          and name like CONCAT("%",#{name},"%")
        </if>
        <if test="dataRangeType != null" >
          and data_range_type = #{dataRangeType,jdbcType=TINYINT}
        </if>
        <if test="orgId != null" >
          and org_id = #{orgId,jdbcType=VARCHAR}
        </if>
        <if test="status != null" >
          and status = #{status,jdbcType=TINYINT}
        </if>
        <if test="isValid != null" >
          and is_valid = #{isValid,jdbcType=TINYINT}
        </if>
        <if test="updateTime != null" >
          and update_time = #{updateTime,jdbcType=TIMESTAMP}
        </if>
        <if test="updateUserId != null" >
          and update_user_id = #{updateUserId,jdbcType=VARCHAR}
        </if>
      </trim>
    </where>
    <if test="sorting != null">order by ${sorting}</if>
    <if test="sorting == null">order by create_time</if>
    <if test="offset != null and limit != null">
      limit #{offset}, #{limit}
    </if>
  </sql>
 
  <sql id="ViewRoleQuery_Where_Clause">
    <where>
      <trim prefixOverrides="and">
        id!='1'
        <if test="id != null"> and ID = #{id}</if>
        <if test="name != null" >
          and name like CONCAT("%",#{name},"%")
        </if>
        <if test="dataRangeType != null" >
          and data_range_type = #{dataRangeType,jdbcType=TINYINT}
        </if>
        <if test="orgId != null" >
          and org_id = #{orgId,jdbcType=VARCHAR}
        </if>
        <if test="status != null" >
          and status = #{status,jdbcType=TINYINT}
        </if>
        <if test="isValid != null" >
          and is_valid = #{isValid,jdbcType=TINYINT}
        </if>
        <if test="updateTime != null" >
          and update_time = #{updateTime,jdbcType=TIMESTAMP}
        </if>
        <if test="updateUserId != null" >
          and update_user_id = #{updateUserId,jdbcType=VARCHAR}
        </if>
      </trim>
    </where>
    <if test="sorting != null">order by ${sorting}</if>
    <if test="sorting == null">order by create_time</if>
    <if test="offset != null and limit != null">
      limit #{offset}, #{limit}
    </if>
  </sql>
 
  <!-- 查询总数 -->
  <select id="selectCount" resultType="java.lang.Long" parameterType="java.util.Map">
    select count(ID)
    from t_sys_role
    <include refid="Base_Where_Clause" />
  </select>
 
  <!-- 查询 -->
  <select id="select" resultMap="BaseResultMap" parameterType="java.util.Map">
    select
    <include refid="Base_Column_List" />
    from t_sys_role
    <include refid="Base_Where_Clause" />
  </select>
  <!-- 根据ID删除-->
  <delete id="deleteById" parameterType="java.lang.String">
    delete from
    t_sys_role
    where ID = #{id}
  </delete>
  <delete id="delete" parameterType="java.util.Map">
    update t_sys_role
    set is_valid=0
    <include refid="Base_Where_Clause" />
  </delete>
 
  <!-- 根据ID查询 -->
  <select id="selectById" resultMap="BaseResultMap" parameterType="java.lang.String">
    select
    <include refid="Base_Column_List" />
    from t_sys_role
    where ID = #{id}
  </select>
  <!-- 添加 -->
  <insert id="insert" parameterType="cn.com.basic.role.entity.SysRole">
   insert into t_sys_role (id, name, org_id, comment,
      data_range_type, status, is_valid,
      update_time, update_user_id,create_time, create_user_id)
    values (#{id,jdbcType=VARCHAR}, #{name,jdbcType=VARCHAR}, #{orgId,jdbcType=VARCHAR}, #{comment,jdbcType=VARCHAR},
      #{dataRangeType,jdbcType=TINYINT}, #{status,jdbcType=TINYINT}, #{isValid,jdbcType=TINYINT},
      #{updateTime,jdbcType=TIMESTAMP}, #{updateUserId,jdbcType=VARCHAR},
      #{createTime,jdbcType=TIMESTAMP}, #{createUserId,jdbcType=VARCHAR})
  </insert>
 
  <!-- 通过ID更新 -->
  <update id="updateByIdSelective" parameterType="cn.com.basic.role.entity.SysRole">
    update t_sys_role
    <set >
      <if test="name != null" >
        name = #{name,jdbcType=VARCHAR},
      </if>
      <if test="privilege != null" >
        privilege = #{privilege,jdbcType=BIGINT},
      </if>
      <if test="orgId != null" >
        org_id = #{orgId,jdbcType=VARCHAR},
      </if>
      <if test="dataRangeType != null" >
        data_range_type = #{dataRangeType,jdbcType=TINYINT},
      </if>
      <if test="comment != null" >
        comment = #{comment,jdbcType=VARCHAR},
      </if>
      <if test="status != null" >
        status = #{status,jdbcType=TINYINT},
      </if>
      <if test="isValid != null" >
        is_valid = #{isValid,jdbcType=TINYINT},
      </if>
      <if test="updateTime != null" >
        update_time = #{updateTime,jdbcType=TIMESTAMP},
      </if>
      <if test="updateUserId != null" >
        update_user_id = #{updateUserId,jdbcType=VARCHAR},
      </if>
    </set>
    where id = #{id,jdbcType=VARCHAR}
  </update>
 
  <!-- 根据IDs删除 -->
  <delete id="deleteByIds">
    delete from
    t_sys_role
    where
    <foreach collection="array" item="id" open="id in (" close=")" separator=",">
      '${id}'
    </foreach>
  </delete>
 
  <!--ViewRoleQuery-->
  <resultMap id="ViewResultMap" type="cn.com.basic.role.entity.ViewRoleQuery" >
    <result column="id" property="id" jdbcType="VARCHAR" />
    <result column="name" property="name" jdbcType="VARCHAR" />
    <result column="org_id" property="orgId" jdbcType="VARCHAR" />
    <result column="data_range_type" property="dataRangeType" jdbcType="TINYINT" />
    <result column="status" property="status" jdbcType="TINYINT" />
    <result column="is_valid" property="isValid" jdbcType="TINYINT" />
    <result column="update_time" property="updateTime" jdbcType="TIMESTAMP" />
    <result column="update_user_id" property="updateUserId" jdbcType="VARCHAR" />
    <result column="organization_name" property="organizationName" jdbcType="VARCHAR" />
    <result column="comment" property="comment" jdbcType="VARCHAR" />
  </resultMap>
 
  <select id="selectViewRoleQuery" resultMap="ViewResultMap" parameterType="java.util.Map">
    select
    *
    from v_sys_role_query
    <include refid="ViewRoleQuery_Where_Clause"/>
  </select>
 
  <select id="selectViewRoleQueryCount" resultType="java.lang.Long" parameterType="java.util.Map">
    select count(ID)
    from v_sys_role_query
    <include refid="ViewRoleQuery_Where_Clause"/>
  </select>
</mapper>