|
@@ -7,14 +7,20 @@
|
|
|
<result column="user_name" property="userName" />
|
|
|
<result column="phone" property="phone" />
|
|
|
<result column="email" property="email" />
|
|
|
+ <result column="province_id" property="provinceId" />
|
|
|
<result column="city_id" property="cityId" />
|
|
|
- <result column="district" property="district" />
|
|
|
- <association property="city" column="city_id">
|
|
|
- <id column="city_id" property="cityId"></id>
|
|
|
- <result column="city_name_zh" property="cityNameZh" />
|
|
|
- <result column="city_name_en" property="cityNameEn" />
|
|
|
- <result column="ord" property="ord" />
|
|
|
- <result column="province" property="province" />
|
|
|
+ <result column="area_id" property="areaId" />
|
|
|
+ <association column="province_id" property="province">
|
|
|
+ <id column="province_id" property="areaId"></id>
|
|
|
+ <result column="province_Name" property="areaName" />
|
|
|
+ </association>
|
|
|
+ <association column="city_id" property="city">
|
|
|
+ <id column="city_id" property="areaId"></id>
|
|
|
+ <result column="city_name" property="areaName" />
|
|
|
+ </association>
|
|
|
+ <association column="area_id" property="area">
|
|
|
+ <id column="area_id" property="areaId"></id>
|
|
|
+ <result column="area_name" property="areaName" />
|
|
|
</association>
|
|
|
<collection property="roles" resultMap="RoleResultMap" />
|
|
|
</resultMap>
|
|
@@ -23,27 +29,45 @@
|
|
|
<id column="role_id" property="roleId"></id>
|
|
|
<result column="role_name" property="roleName" />
|
|
|
<result column="system" property="system" />
|
|
|
- <collection property="cities" ofType="com.nokia.pojo.City">
|
|
|
- <result column="role_city_id" property="cityId" />
|
|
|
- <result column="role_city_name_zh" property="cityNameZh" />
|
|
|
- <result column="role_city_name_en" property="cityNameEn" />
|
|
|
- <result column="role_ord" property="ord" />
|
|
|
- <result column="role_province" property="province" />
|
|
|
+ <collection property="cities" ofType="com.nokia.pojo.Area">
|
|
|
+ <result column="role_city_id" property="areaId" />
|
|
|
+ <result column="role_area_name" property="areaName" />
|
|
|
</collection>
|
|
|
</resultMap>
|
|
|
|
|
|
<select id="getRoleCityByUserId" resultMap="RoleResultMap">
|
|
|
- select ar.role_id, ar.role_name, ar."system", aurc.city_id as role_city_id, ac.city_name_zh as role_city_name_zh,
|
|
|
- ac.city_name_en as role_city_name_en, ac.ord as role_ord, ac.province as role_province
|
|
|
- from sqmdb_rpt.acl_role ar, sqmdb_rpt.acl_user_role_city aurc, sqmdb_rpt.acl_city ac
|
|
|
- where ar.role_id = aurc.role_id and aurc.city_id = ac.city_id and aurc.user_id = #{userId}
|
|
|
+ select ar.role_id, ar.role_name, ar."system", aurc.city_id as role_city_id, ac.area_name as role_area_name
|
|
|
+ from sqmdb_rpt.acl_role ar, sqmdb_rpt.acl_user_role_city aurc, sqmdb_rpt.acl_area ac
|
|
|
+ where ar.role_id = aurc.role_id and aurc.city_id = ac.area_id and aurc.user_id = #{userId}
|
|
|
</select>
|
|
|
|
|
|
<select id="getByLoginName" resultMap="UserResultMap">
|
|
|
- select au.user_id, au.login_name, au.user_name, au.phone, au.email, au.city_id, ac.city_name_zh, ac.city_name_en, ac.ord, ac.province,
|
|
|
- au.district, ar.role_id, ar.role_name, ar."system", aurc.city_id as role_city_id, ac2.city_name_zh as role_city_name_zh,
|
|
|
- ac2.city_name_en as role_city_name_en, ac2.ord as role_ord, ac2.province as role_province
|
|
|
- from sqmdb_rpt.acl_user au, sqmdb_rpt.acl_role ar, sqmdb_rpt.acl_user_role_city aurc, sqmdb_rpt.acl_city ac, sqmdb_rpt.acl_city ac2
|
|
|
- where au.user_id = aurc.user_id and ar.role_id = aurc.role_id and au.city_id = ac.city_id and aurc.city_id = ac2.city_id and au.login_name = #{loginName}
|
|
|
+ select au.user_id, au.login_name, au.user_name, au.phone, au.email, au.province_id, ac.area_name as province_name,
|
|
|
+ au.city_id, ac2.area_name as city_name, au.area_id, ar.role_id, ar.role_name, ar."system", aurc.city_id as role_city_id,
|
|
|
+ ac3.area_name as role_area_name
|
|
|
+ from sqmdb_rpt.acl_user au, sqmdb_rpt.acl_role ar, sqmdb_rpt.acl_user_role_city aurc, sqmdb_rpt.acl_area ac, sqmdb_rpt.acl_area ac2, sqmdb_rpt.acl_area ac3
|
|
|
+ where au.user_id = aurc.user_id and ar.role_id = aurc.role_id and au.province_id = ac.area_id
|
|
|
+ and au.city_id = ac2.area_id and aurc.city_id = ac3.area_id and au.login_name = #{loginName}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="getByRoleIds" resultMap="UserResultMap">
|
|
|
+ select au.user_id, au.login_name, au.user_name, au.phone, au.email, au.province_id, ac.area_name as province_name,
|
|
|
+ au.city_id, ac2.area_name as city_name, au.area_id, ar.role_id, ar.role_name, ar."system", aurc.city_id as role_city_id,
|
|
|
+ ac3.area_name as role_area_name
|
|
|
+ from sqmdb_rpt.acl_user au, sqmdb_rpt.acl_role ar, sqmdb_rpt.acl_user_role_city aurc, sqmdb_rpt.acl_area ac, sqmdb_rpt.acl_area ac2, sqmdb_rpt.acl_area ac3
|
|
|
+ where au.user_id = aurc.user_id and ar.role_id = aurc.role_id and au.province_id = ac.area_id
|
|
|
+ and au.city_id = ac2.area_id and aurc.city_id = ac3.area_id
|
|
|
+ <if test="roleIds != null">
|
|
|
+ and aurc.role_id in
|
|
|
+ <foreach collection="roleIds" item="item" open="(" separator="," close=")" index="index">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
+ <if test="cityIds != null">
|
|
|
+ and aurc.city_id in
|
|
|
+ <foreach collection="cityIds" item="item" open="(" separator="," close=")" index="index">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
</select>
|
|
|
</mapper>
|