UserMapper.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  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.huaxu.dao.UserMapper">
  4. <!-- 结果集 -->
  5. <resultMap type="com.huaxu.entity.User" id="UserMap">
  6. <result property="id" column="ID" jdbcType="INTEGER"/>
  7. <result property="tenantId" column="TENANT_ID" jdbcType="VARCHAR"/>
  8. <result property="username" column="USERNAME" jdbcType="VARCHAR"/>
  9. <result property="phone" column="PHONE" jdbcType="VARCHAR"/>
  10. <result property="companyOrgId" column="COMPANY_ORG_ID" jdbcType="INTEGER"/>
  11. <result property="deptOrgId" column="DEPT_ORG_ID" jdbcType="INTEGER"/>
  12. <result property="photo" column="PHOTO" jdbcType="VARCHAR"/>
  13. <result property="userType" column="USER_TYPE" jdbcType="VARCHAR"/>
  14. <result property="enableState" column="ENABLE_STATE" jdbcType="VARCHAR"/>
  15. <result property="remark" column="REMARK" jdbcType="VARCHAR"/>
  16. <result property="email" column="EMAIL" jdbcType="VARCHAR"/>
  17. <result property="status" column="STATUS" jdbcType="INTEGER"/>
  18. <result property="dateCreate" column="DATE_CREATE" jdbcType="TIMESTAMP"/>
  19. <result property="createBy" column="CREATE_BY" jdbcType="VARCHAR"/>
  20. <result property="dateUpdate" column="DATE_UPDATE" jdbcType="TIMESTAMP"/>
  21. <result property="updateBy" column="UPDATE_BY" jdbcType="VARCHAR"/>
  22. <result property="logo" column="LOGO" jdbcType="VARCHAR"/>
  23. <result property="webUrl" column="WEB_URL" jdbcType="VARCHAR"/>
  24. <result property="companyOrgState" column="companyOrgState" jdbcType="INTEGER"/>
  25. <result property="departmentOrgState" column="departmentOrgState" jdbcType="INTEGER"/>
  26. <result property="tenantState" column="TENANT_STATE" jdbcType="INTEGER"/>
  27. </resultMap>
  28. <!-- 基本字段 -->
  29. <sql id="Base_Column_List">
  30. ID, TENANT_ID, USERNAME, PHONE, COMPANY_ORG_ID, DEPT_ORG_ID, PHOTO, USER_TYPE, ENABLE_STATE, REMARK, EMAIL, STATUS, DATE_CREATE, CREATE_BY, DATE_UPDATE, UPDATE_BY </sql>
  31. <!-- 查询单个 -->
  32. <select id="selectById" resultMap="UserMap">
  33. select
  34. <include refid="Base_Column_List"/>
  35. from uims_user
  36. where ID = #{id}
  37. </select>
  38. <!-- 查询全部 -->
  39. <select id="selectAll" resultMap="UserMap">
  40. select
  41. <include refid="Base_Column_List"/>
  42. from uims_user
  43. </select>
  44. <!--通过实体作为筛选条件查询-->
  45. <select id="selectList" resultMap="UserMap">
  46. select
  47. b.TENANT_STATE, a.*, b.LOGO,b.WEB_URL ,c.ORG_STATE companyOrgState,d.ORG_STATE departmentOrgState
  48. from uims_user a join uims_tenant b on a.TENANT_ID=b.CODE
  49. join uims_org c on a.COMPANY_ORG_ID=c.id left join
  50. uims_org d on a.DEPT_ORG_ID=d.ID
  51. <where>
  52. and a.status=1
  53. <if test="id != null">
  54. and ID = #{id}
  55. </if>
  56. <if test="tenantId != null and tenantId != ''">
  57. and a.TENANT_ID = #{tenantId}
  58. </if>
  59. <if test="username != null and username != ''">
  60. and USERNAME = #{username}
  61. </if>
  62. <if test="phone != null and phone != ''">
  63. and PHONE = #{phone}
  64. </if>
  65. <if test="companyOrgId != null">
  66. and COMPANY_ORG_ID = #{companyOrgId}
  67. </if>
  68. <if test="deptOrgId != null">
  69. and DEPT_ORG_ID = #{deptOrgId}
  70. </if>
  71. <if test="photo != null and photo != ''">
  72. and PHOTO = #{photo}
  73. </if>
  74. <if test="userType != null and userType != ''">
  75. and USER_TYPE = #{userType}
  76. </if>
  77. <if test="enableState != null and enableState != ''">
  78. and ENABLE_STATE = #{enableState}
  79. </if>
  80. <if test="remark != null">
  81. and REMARK = #{remark}
  82. </if>
  83. <if test="email != null and email != ''">
  84. and EMAIL = #{email}
  85. </if>
  86. <if test="status != null">
  87. and STATUS = #{status}
  88. </if>
  89. <if test="dateCreate != null">
  90. and DATE_CREATE = #{dateCreate}
  91. </if>
  92. <if test="createBy != null and createBy != ''">
  93. and CREATE_BY = #{createBy}
  94. </if>
  95. <if test="dateUpdate != null">
  96. and DATE_UPDATE = #{dateUpdate}
  97. </if>
  98. <if test="updateBy != null and updateBy != ''">
  99. and UPDATE_BY = #{updateBy}
  100. </if>
  101. </where>
  102. </select>
  103. <!-- 新增所有列 -->
  104. <insert id="insert" keyProperty="id" useGeneratedKeys="true">
  105. insert into uims_user(ID, TENANT_ID, USERNAME, PHONE, COMPANY_ORG_ID, DEPT_ORG_ID, PHOTO, USER_TYPE, ENABLE_STATE, REMARK, EMAIL, STATUS, DATE_CREATE, CREATE_BY, DATE_UPDATE, UPDATE_BY)
  106. values ( #{id}, #{tenantId}, #{username}, #{phone}, #{companyOrgId}, #{deptOrgId}, #{photo}, #{userType}, #{enableState}, #{remark}, #{email}, #{status}, #{dateCreate}, #{createBy}, #{dateUpdate}, #{updateBy})
  107. </insert>
  108. <!-- 批量新增 -->
  109. <insert id="batchInsert">
  110. insert into uims_user(ID, TENANT_ID, USERNAME, PHONE, COMPANY_ORG_ID, DEPT_ORG_ID, PHOTO, USER_TYPE,
  111. ENABLE_STATE, REMARK, EMAIL, STATUS, DATE_CREATE, CREATE_BY, DATE_UPDATE, UPDATE_BY)
  112. values
  113. <foreach collection="users" item="item" index="index" separator=",">
  114. (
  115. #{item.id}, #{item.tenantId}, #{item.username}, #{item.phone}, #{item.companyOrgId}, #{item.deptOrgId},
  116. #{item.photo}, #{item.userType}, #{item.enableState}, #{item.remark}, #{item.email}, #{item.status},
  117. #{item.dateCreate}, #{item.createBy}, #{item.dateUpdate}, #{item.updateBy} )
  118. </foreach>
  119. </insert>
  120. <!-- 通过主键修改数据 -->
  121. <update id="update">
  122. update uims.uims_user
  123. <set>
  124. <if test="tenantId != null and tenantId != ''">
  125. TENANT_ID = #{tenantId},
  126. </if>
  127. <if test="username != null and username != ''">
  128. USERNAME = #{username},
  129. </if>
  130. <if test="phone != null and phone != ''">
  131. PHONE = #{phone},
  132. </if>
  133. <if test="companyOrgId != null">
  134. COMPANY_ORG_ID = #{companyOrgId},
  135. </if>
  136. <if test="deptOrgId != null">
  137. DEPT_ORG_ID = #{deptOrgId},
  138. </if>
  139. <if test="photo != null and photo != ''">
  140. PHOTO = #{photo},
  141. </if>
  142. <if test="userType != null and userType != ''">
  143. USER_TYPE = #{userType},
  144. </if>
  145. <if test="enableState != null and enableState != ''">
  146. ENABLE_STATE = #{enableState},
  147. </if>
  148. <if test="remark != null">
  149. REMARK = #{remark},
  150. </if>
  151. <if test="email != null and email != ''">
  152. EMAIL = #{email},
  153. </if>
  154. <if test="status != null">
  155. STATUS = #{status},
  156. </if>
  157. <if test="dateCreate != null">
  158. DATE_CREATE = #{dateCreate},
  159. </if>
  160. <if test="createBy != null and createBy != ''">
  161. CREATE_BY = #{createBy},
  162. </if>
  163. <if test="dateUpdate != null">
  164. DATE_UPDATE = #{dateUpdate},
  165. </if>
  166. <if test="updateBy != null and updateBy != ''">
  167. UPDATE_BY = #{updateBy},
  168. </if>
  169. </set>
  170. where ID = #{id}
  171. </update>
  172. <!--通过主键删除-->
  173. <delete id="deleteById">
  174. delete from uims_user where ID = #{id}
  175. </delete>
  176. <!-- 总数 -->
  177. <select id="count" resultType="int">
  178. select count(*) from uims_user
  179. </select>
  180. <select id="selectPage" resultMap="UserMap">
  181. select
  182. <include refid="Base_Column_List"/>
  183. from uims_user
  184. <where>
  185. <if test="user.id != null">
  186. and ID = #{user.id}
  187. </if>
  188. <if test="user.tenantId != null and user.tenantId != ''">
  189. and TENANT_ID = #{user.tenantId}
  190. </if>
  191. <if test="user.username != null and user.username != ''">
  192. and USERNAME = #{user.username}
  193. </if>
  194. <if test="user.phone != null and user.phone != ''">
  195. and PHONE = #{user.phone}
  196. </if>
  197. <if test="user.companyOrgId != null">
  198. and COMPANY_ORG_ID = #{user.companyOrgId}
  199. </if>
  200. <if test="user.deptOrgId != null">
  201. and DEPT_ORG_ID = #{user.deptOrgId}
  202. </if>
  203. <if test="user.photo != null and user.photo != ''">
  204. and PHOTO = #{user.photo}
  205. </if>
  206. <if test="user.userType != null and user.userType != ''">
  207. and USER_TYPE = #{user.userType}
  208. </if>
  209. <if test="user.enableState != null and user.enableState != ''">
  210. and ENABLE_STATE = #{user.enableState}
  211. </if>
  212. <if test="user.remark != null">
  213. and REMARK = #{user.remark}
  214. </if>
  215. <if test="user.email != null and user.email != ''">
  216. and EMAIL = #{user.email}
  217. </if>
  218. <if test="user.status != null">
  219. and STATUS = #{user.status}
  220. </if>
  221. <if test="user.dateCreate != null">
  222. and DATE_CREATE = #{user.dateCreate}
  223. </if>
  224. <if test="user.createBy != null and user.createBy != ''">
  225. and CREATE_BY = #{user.createBy}
  226. </if>
  227. <if test="user.dateUpdate != null">
  228. and DATE_UPDATE = #{user.dateUpdate}
  229. </if>
  230. <if test="user.updateBy != null and user.updateBy != ''">
  231. and UPDATE_BY = #{user.updateBy}
  232. </if>
  233. </where>
  234. </select>
  235. <select id="findPermission" resultType="com.huaxu.model.Permission">
  236. select c.PERMISSION_TYPE ,c.id roleId,c.ROLE_STATE roleState
  237. from uims_user a join uims_user_role b on a.id=b.USER_ID
  238. join uims_role c on b.ROLE_ID= c.ID
  239. where a.STATUS !=0 and b.status!=0 and c.status!=0
  240. and a.id=#{id}
  241. </select>
  242. <select id="findOrgRole" resultType="com.huaxu.model.ProgramItem">
  243. select d.ORG_ID orgId,c.ORG_TYPE newType from uims_user_role b
  244. join uims_role_org d on b.ROLE_ID=d.ROLE_ID join uims_org c
  245. on c.id=d.ORG_ID
  246. where b.USER_ID=#{id} and b.status!=0 and d.status!=0
  247. </select>
  248. <select id="findOrgs" resultType="com.huaxu.entity.Org">
  249. select ID, TENANT_ID, ORG_TYPE,
  250. PARENT_ORG_ID, ORG_AREA_ID, ORG_NAME, ORG_STATE, REMARK, ORG_LEADER_NAME,
  251. ORG_LEADER_PHONE, ORG_LEADER_EMAIL,
  252. ORG_LEADER_SEX, STATUS, DATE_CREATE,
  253. CREATE_BY, DATE_UPDATE, UPDATE_BY
  254. from uims_org
  255. <where>
  256. <if test="orgType != null and orgType != ''">
  257. and ORG_TYPE=#{orgType}
  258. </if>
  259. and TENANT_ID=#{tenantId}
  260. and status!=0
  261. </where>
  262. </select>
  263. <select id="findLoginInfo" resultType="com.huaxu.dto.UserDto">
  264. select a.id, a.PHONE,b.TENANT_NAME,b.code tenantId,b.WEB_URL ,b.LOGO,a.USERNAME name
  265. from uims_user a join uims_tenant b on
  266. a.TENANT_ID=b.CODE
  267. where a.PHONE=#{phone} and a.status!=0 and b.status!=0
  268. </select>
  269. <!-- 新增注册数据 -->
  270. <insert id="insertRegister" keyProperty="id" useGeneratedKeys="true">
  271. insert into uims_user_register( ID, USERNAME, PHONE, USER_TYPE, REMARK, STATUS, CREATE_BY,DATE_CREATE,UPDATE_BY,DATE_UPDATE)
  272. values ( #{id}, #{username}, #{phone}, #{userType}, #{remark}, 1, #{createBy}, #{dateCreate}, #{updateBy}, #{dateUpdate})
  273. </insert>
  274. <!-- 超级管理员查询 一级菜单List -->
  275. <select id="findAllFirstMenu" resultType="com.huaxu.entity.MenuEntity">
  276. SELECT
  277. a.app_id appId
  278. FROM uims_menu a
  279. <where>
  280. a.status=1 and a.PARENT_MENU_ID=0 and a.SHOW_STATE=1 and a.is_admin=1
  281. </where>
  282. </select>
  283. <!-- 租户管理员查询租户菜单 -->
  284. <select id="findTenantFirstMenu" resultType="com.huaxu.entity.MenuEntity">
  285. select
  286. a.app_id appId
  287. from uims_tenant_menu b
  288. inner join uims_menu a on a.id= b.MENU_ID and a.status=1
  289. <where>
  290. b.status=1 and a.PARENT_MENU_ID=0 and a.show_state=1 and a.is_tenant=1
  291. <if test="tenantId != null and tenantId != ''">
  292. and b.tenant_id = #{tenantId}
  293. </if>
  294. </where>
  295. order by b.MENU_SEQ
  296. </select>
  297. <select id="findUserFirstMenu" resultType="com.huaxu.entity.MenuEntity">
  298. SELECT
  299. a.app_id as appId
  300. from uims_user_role userrole
  301. inner join uims_role_menu rolemenu on rolemenu.ROLE_ID=userrole.ROLE_ID and rolemenu.status=1
  302. inner join uims_menu a on a.id=rolemenu.MENU_ID and a.STATUS=1
  303. inner join uims_tenant_menu b on a.id= b.MENU_ID and b.status=1
  304. <if test="tenantId != null and tenantId != ''">
  305. and b.tenant_id = #{tenantId}
  306. </if>
  307. <where>
  308. userrole.status=1 and a.PARENT_MENU_ID=0 and a.SHOW_STATE=1 and a.is_tenant=1
  309. <if test="userId != null and userId != ''">
  310. and userrole.user_id = #{userId}
  311. </if>
  312. </where>
  313. order by b.MENU_SEQ
  314. </select>
  315. </mapper>