UserMapper.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.nokia.dao.UserDao">
  4. <resultMap id="UserResultMap" type="com.nokia.pojo.User">
  5. <id column="user_id" property="userId"></id>
  6. <result column="login_name" property="loginName" />
  7. <result column="user_name" property="userName" />
  8. <result column="phone" property="phone" />
  9. <result column="email" property="email" />
  10. <result column="city_id" property="cityId" />
  11. <result column="district" property="district" />
  12. <association property="city" column="city_id">
  13. <id column="city_id" property="cityId"></id>
  14. <result column="city_name_zh" property="cityNameZh" />
  15. <result column="city_name_en" property="cityNameEn" />
  16. <result column="ord" property="ord" />
  17. <result column="province" property="province" />
  18. </association>
  19. <collection property="roles" resultMap="RoleResultMap" />
  20. </resultMap>
  21. <resultMap id="RoleResultMap" type="com.nokia.pojo.Role">
  22. <id column="role_id" property="roleId"></id>
  23. <result column="role_name" property="roleName" />
  24. <result column="system" property="system" />
  25. <collection property="cities" ofType="int">
  26. <result column="role_city_id" property="cityId" />
  27. </collection>
  28. </resultMap>
  29. <select id="getRoleCityByUserId" resultMap="RoleResultMap">
  30. select ar.role_id, ar.role_name, ar."system", aurc.city_id as role_city_id
  31. from sqmdb_rpt.acl_role ar, sqmdb_rpt.acl_user_role_city aurc
  32. where ar.role_id = aurc.role_id and aurc.user_id = #{userId}
  33. </select>
  34. <select id="getByLoginName2" resultMap="UserResultMap">
  35. 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,
  36. au.district, ar.role_id, ar.role_name, ar."system", aurc.city_id as role_city_id
  37. from sqmdb_rpt.acl_user au, sqmdb_rpt.acl_role ar, sqmdb_rpt.acl_user_role_city aurc, sqmdb_rpt.acl_city ac
  38. where au.user_id = aurc.user_id and ar.role_id = aurc.role_id and au.city_id = ac.city_id and au.login_name = #{loginName}
  39. </select>
  40. </mapper>