GyeepermissionMapper.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  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.gyee.frame.mapper.auto.GyeepermissionMapper">
  4. <resultMap id="BaseResultMap" type="com.gyee.frame.model.auto.Gyeepermission">
  5. <result column="id" jdbcType="VARCHAR" property="id" />
  6. <result column="permisssionlevel" jdbcType="VARCHAR" property="permisssionlevel" />
  7. <result column="permisssionname" jdbcType="VARCHAR" property="permisssionname" />
  8. <result column="describes" jdbcType="VARCHAR" property="describes" />
  9. <result column="remark1" jdbcType="VARCHAR" property="remark1" />
  10. <result column="remark2" jdbcType="VARCHAR" property="remark2" />
  11. <result column="parent" jdbcType="VARCHAR" property="parent" />
  12. <result column="isable" jdbcType="VARCHAR" property="isable" />
  13. </resultMap>
  14. <sql id="Example_Where_Clause">
  15. <where>
  16. <foreach collection="oredCriteria" item="criteria" separator="or">
  17. <if test="criteria.valid">
  18. <trim prefix="(" prefixOverrides="and" suffix=")">
  19. <foreach collection="criteria.criteria" item="criterion">
  20. <choose>
  21. <when test="criterion.noValue">
  22. and ${criterion.condition}
  23. </when>
  24. <when test="criterion.singleValue">
  25. and ${criterion.condition} #{criterion.value}
  26. </when>
  27. <when test="criterion.betweenValue">
  28. and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
  29. </when>
  30. <when test="criterion.listValue">
  31. and ${criterion.condition}
  32. <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
  33. #{listItem}
  34. </foreach>
  35. </when>
  36. </choose>
  37. </foreach>
  38. </trim>
  39. </if>
  40. </foreach>
  41. </where>
  42. </sql>
  43. <sql id="Update_By_Example_Where_Clause">
  44. <where>
  45. <foreach collection="example.oredCriteria" item="criteria" separator="or">
  46. <if test="criteria.valid">
  47. <trim prefix="(" prefixOverrides="and" suffix=")">
  48. <foreach collection="criteria.criteria" item="criterion">
  49. <choose>
  50. <when test="criterion.noValue">
  51. and ${criterion.condition}
  52. </when>
  53. <when test="criterion.singleValue">
  54. and ${criterion.condition} #{criterion.value}
  55. </when>
  56. <when test="criterion.betweenValue">
  57. and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
  58. </when>
  59. <when test="criterion.listValue">
  60. and ${criterion.condition}
  61. <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
  62. #{listItem}
  63. </foreach>
  64. </when>
  65. </choose>
  66. </foreach>
  67. </trim>
  68. </if>
  69. </foreach>
  70. </where>
  71. </sql>
  72. <sql id="Base_Column_List">
  73. id,
  74. permisssionlevel,
  75. permisssionname,
  76. describes,
  77. remark1,
  78. remark2,
  79. parent,
  80. isable
  81. </sql>
  82. <select id="selectByExample" parameterType="com.gyee.frame.model.auto.GyeepermissionExample" resultMap="BaseResultMap">
  83. select
  84. <if test="distinct">
  85. distinct
  86. </if>
  87. <include refid="Base_Column_List" />
  88. from gyeepermission
  89. <if test="_parameter != null">
  90. <include refid="Example_Where_Clause" />
  91. </if>
  92. <if test="orderByClause != null">
  93. order by ${orderByClause}
  94. </if>
  95. </select>
  96. <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
  97. select
  98. <include refid="Base_Column_List" />
  99. from gyeepermission
  100. where id = #{id,jdbcType=VARCHAR}
  101. </select>
  102. <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
  103. delete from gyeepermission
  104. where id = #{id,jdbcType=VARCHAR}
  105. </delete>
  106. <delete id="deleteByExample" parameterType="com.gyee.frame.model.auto.GyeepermissionExample">
  107. delete from gyeepermission
  108. <if test="_parameter != null">
  109. <include refid="Example_Where_Clause" />
  110. </if>
  111. </delete>
  112. <insert id="insert" parameterType="com.gyee.frame.model.auto.Gyeepermission">
  113. insert into gyeepermission (
  114. id,
  115. permisssionlevel,
  116. permisssionname,
  117. describes,
  118. remark1,
  119. remark2,
  120. parent,
  121. isable
  122. )
  123. values (
  124. #{id,jdbcType=VARCHAR},
  125. #{permisssionlevel,jdbcType=VARCHAR},
  126. #{permisssionname,jdbcType=VARCHAR},
  127. #{describes,jdbcType=VARCHAR},
  128. #{remark1,jdbcType=VARCHAR},
  129. #{remark2,jdbcType=VARCHAR},
  130. #{parent,jdbcType=VARCHAR},
  131. #{isable,jdbcType=VARCHAR}
  132. )
  133. </insert>
  134. <insert id="insertSelective" parameterType="com.gyee.frame.model.auto.Gyeepermission">
  135. insert into gyeepermission
  136. <trim prefix="(" suffix=")" suffixOverrides=",">
  137. <if test="id != null">
  138. id,
  139. </if>
  140. <if test="permisssionlevel != null">
  141. permisssionlevel,
  142. </if>
  143. <if test="permisssionname != null">
  144. permisssionname,
  145. </if>
  146. <if test="describes != null">
  147. describes,
  148. </if>
  149. <if test="remark1 != null">
  150. remark1,
  151. </if>
  152. <if test="remark2 != null">
  153. remark2,
  154. </if>
  155. <if test="parent != null">
  156. parent,
  157. </if>
  158. <if test="isable != null">
  159. isable,
  160. </if>
  161. </trim>
  162. <trim prefix="values (" suffix=")" suffixOverrides=",">
  163. <if test="id != null">
  164. #{id,jdbcType=VARCHAR},
  165. </if>
  166. <if test="permisssionlevel != null">
  167. #{permisssionlevel,jdbcType=VARCHAR},
  168. </if>
  169. <if test="permisssionname != null">
  170. #{permisssionname,jdbcType=VARCHAR},
  171. </if>
  172. <if test="describes != null">
  173. #{describes,jdbcType=VARCHAR},
  174. </if>
  175. <if test="remark1 != null">
  176. #{remark1,jdbcType=VARCHAR},
  177. </if>
  178. <if test="remark2 != null">
  179. #{remark2,jdbcType=VARCHAR},
  180. </if>
  181. <if test="parent != null">
  182. #{parent,jdbcType=VARCHAR},
  183. </if>
  184. <if test="isable != null">
  185. #{isable,jdbcType=VARCHAR},
  186. </if>
  187. </trim>
  188. </insert>
  189. <select id="countByExample" parameterType="com.gyee.frame.model.auto.GyeepermissionExample" resultType="java.lang.Long">
  190. select count(*) from gyeepermission
  191. <if test="_parameter != null">
  192. <include refid="Example_Where_Clause" />
  193. </if>
  194. </select>
  195. <update id="updateByExampleSelective" parameterType="map">
  196. update gyeepermission
  197. <set>
  198. <if test="record.id != null">
  199. id = #{record.id,jdbcType=VARCHAR},
  200. </if>
  201. <if test="record.permisssionlevel != null">
  202. permisssionlevel = #{record.permisssionlevel,jdbcType=VARCHAR},
  203. </if>
  204. <if test="record.permisssionname != null">
  205. permisssionname = #{record.permisssionname,jdbcType=VARCHAR},
  206. </if>
  207. <if test="record.describes != null">
  208. describes = #{record.describes,jdbcType=VARCHAR},
  209. </if>
  210. <if test="record.remark1 != null">
  211. remark1 = #{record.remark1,jdbcType=VARCHAR},
  212. </if>
  213. <if test="record.remark2 != null">
  214. remark2 = #{record.remark2,jdbcType=VARCHAR},
  215. </if>
  216. <if test="record.parent != null">
  217. parent = #{record.parent,jdbcType=VARCHAR},
  218. </if>
  219. <if test="record.isable != null">
  220. isable = #{record.isable,jdbcType=VARCHAR},
  221. </if>
  222. </set>
  223. <if test="_parameter != null">
  224. <include refid="Update_By_Example_Where_Clause" />
  225. </if>
  226. </update>
  227. <update id="updateByExample" parameterType="map">
  228. update gyeepermission
  229. set
  230. id = #{record.id,jdbcType=VARCHAR},
  231. permisssionlevel = #{record.permisssionlevel,jdbcType=VARCHAR},
  232. permisssionname = #{record.permisssionname,jdbcType=VARCHAR},
  233. describes = #{record.describes,jdbcType=VARCHAR},
  234. remark1 = #{record.remark1,jdbcType=VARCHAR},
  235. remark2 = #{record.remark2,jdbcType=VARCHAR},
  236. parent = #{record.parent,jdbcType=VARCHAR},
  237. isable = #{record.isable,jdbcType=VARCHAR}
  238. <if test="_parameter != null">
  239. <include refid="Update_By_Example_Where_Clause" />
  240. </if>
  241. </update>
  242. <update id="updateByPrimaryKeySelective" parameterType="com.gyee.frame.model.auto.Gyeepermission">
  243. update gyeepermission
  244. <set>
  245. <if test="permisssionlevel != null">
  246. permisssionlevel = #{permisssionlevel,jdbcType=VARCHAR},
  247. </if>
  248. <if test="permisssionname != null">
  249. permisssionname = #{permisssionname,jdbcType=VARCHAR},
  250. </if>
  251. <if test="describes != null">
  252. describes = #{describes,jdbcType=VARCHAR},
  253. </if>
  254. <if test="remark1 != null">
  255. remark1 = #{remark1,jdbcType=VARCHAR},
  256. </if>
  257. <if test="remark2 != null">
  258. remark2 = #{remark2,jdbcType=VARCHAR},
  259. </if>
  260. <if test="parent != null">
  261. parent = #{parent,jdbcType=VARCHAR},
  262. </if>
  263. <if test="isable != null">
  264. isable = #{isable,jdbcType=VARCHAR},
  265. </if>
  266. </set>
  267. where
  268. id = #{id,jdbcType=VARCHAR}
  269. </update>
  270. <update id="updateByPrimaryKey" parameterType="com.gyee.frame.model.auto.Gyeepermission">
  271. update gyeepermission
  272. set
  273. permisssionlevel = #{permisssionlevel,jdbcType=VARCHAR},
  274. permisssionname = #{permisssionname,jdbcType=VARCHAR},
  275. describes = #{describes,jdbcType=VARCHAR},
  276. remark1 = #{remark1,jdbcType=VARCHAR},
  277. remark2 = #{remark2,jdbcType=VARCHAR},
  278. parent = #{parent,jdbcType=VARCHAR},
  279. isable = #{isable,jdbcType=VARCHAR}
  280. where
  281. id = #{id,jdbcType=VARCHAR}
  282. </update>
  283. <select id="queryPermissionByRoleId" parameterType="java.lang.String" resultType="com.gyee.frame.model.auto.Gyeepermission">
  284. select * from gyeepermission gp inner join gyeerolepermission grp on gp.id=grp.permisssionid inner join gyeeuserrole gur on grp.roleid=gur.roleid where gur.userid=#{userid,jdbcType=VARCHAR}
  285. </select>
  286. </mapper>