GyeeorganMapper.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  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.GyeeorganMapper">
  4. <resultMap id="BaseResultMap" type="com.gyee.frame.model.auto.Gyeeorgan">
  5. <result column="id" jdbcType="VARCHAR" property="id" />
  6. <result column="name" jdbcType="VARCHAR" property="name" />
  7. <result column="descr" jdbcType="VARCHAR" property="descr" />
  8. <result column="type" jdbcType="VARCHAR" property="type" />
  9. </resultMap>
  10. <sql id="Example_Where_Clause">
  11. <where>
  12. <foreach collection="oredCriteria" item="criteria" separator="or">
  13. <if test="criteria.valid">
  14. <trim prefix="(" prefixOverrides="and" suffix=")">
  15. <foreach collection="criteria.criteria" item="criterion">
  16. <choose>
  17. <when test="criterion.noValue">
  18. and ${criterion.condition}
  19. </when>
  20. <when test="criterion.singleValue">
  21. and ${criterion.condition} #{criterion.value}
  22. </when>
  23. <when test="criterion.betweenValue">
  24. and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
  25. </when>
  26. <when test="criterion.listValue">
  27. and ${criterion.condition}
  28. <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
  29. #{listItem}
  30. </foreach>
  31. </when>
  32. </choose>
  33. </foreach>
  34. </trim>
  35. </if>
  36. </foreach>
  37. </where>
  38. </sql>
  39. <sql id="Update_By_Example_Where_Clause">
  40. <where>
  41. <foreach collection="example.oredCriteria" item="criteria" separator="or">
  42. <if test="criteria.valid">
  43. <trim prefix="(" prefixOverrides="and" suffix=")">
  44. <foreach collection="criteria.criteria" item="criterion">
  45. <choose>
  46. <when test="criterion.noValue">
  47. and ${criterion.condition}
  48. </when>
  49. <when test="criterion.singleValue">
  50. and ${criterion.condition} #{criterion.value}
  51. </when>
  52. <when test="criterion.betweenValue">
  53. and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
  54. </when>
  55. <when test="criterion.listValue">
  56. and ${criterion.condition}
  57. <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
  58. #{listItem}
  59. </foreach>
  60. </when>
  61. </choose>
  62. </foreach>
  63. </trim>
  64. </if>
  65. </foreach>
  66. </where>
  67. </sql>
  68. <sql id="Base_Column_List">
  69. id,
  70. name,
  71. descr,
  72. type
  73. </sql>
  74. <select id="selectByExample" parameterType="com.gyee.frame.model.auto.GyeeorganExample" resultMap="BaseResultMap">
  75. select
  76. <if test="distinct">
  77. distinct
  78. </if>
  79. <include refid="Base_Column_List" />
  80. from gyeeorgan
  81. <if test="_parameter != null">
  82. <include refid="Example_Where_Clause" />
  83. </if>
  84. <if test="orderByClause != null">
  85. order by ${orderByClause}
  86. </if>
  87. </select>
  88. <select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
  89. select
  90. <include refid="Base_Column_List" />
  91. from gyeeorgan
  92. where id = #{id,jdbcType=VARCHAR}
  93. </select>
  94. <delete id="deleteByPrimaryKey" parameterType="java.lang.String">
  95. delete from gyeeorgan
  96. where id = #{id,jdbcType=VARCHAR}
  97. </delete>
  98. <delete id="deleteByExample" parameterType="com.gyee.frame.model.auto.GyeeorganExample">
  99. delete from gyeeorgan
  100. <if test="_parameter != null">
  101. <include refid="Example_Where_Clause" />
  102. </if>
  103. </delete>
  104. <insert id="insert" parameterType="com.gyee.frame.model.auto.Gyeeorgan">
  105. insert into gyeeorgan (
  106. id,
  107. name,
  108. descr,
  109. type
  110. )
  111. values (
  112. #{id,jdbcType=VARCHAR},
  113. #{name,jdbcType=VARCHAR},
  114. #{descr,jdbcType=VARCHAR},
  115. #{type,jdbcType=VARCHAR}
  116. )
  117. </insert>
  118. <insert id="insertSelective" parameterType="com.gyee.frame.model.auto.Gyeeorgan">
  119. insert into gyeeorgan
  120. <trim prefix="(" suffix=")" suffixOverrides=",">
  121. <if test="id != null">
  122. id,
  123. </if>
  124. <if test="name != null">
  125. name,
  126. </if>
  127. <if test="descr != null">
  128. descr,
  129. </if>
  130. <if test="type != null">
  131. type,
  132. </if>
  133. </trim>
  134. <trim prefix="values (" suffix=")" suffixOverrides=",">
  135. <if test="id != null">
  136. #{id,jdbcType=VARCHAR},
  137. </if>
  138. <if test="name != null">
  139. #{name,jdbcType=VARCHAR},
  140. </if>
  141. <if test="descr != null">
  142. #{descr,jdbcType=VARCHAR},
  143. </if>
  144. <if test="type != null">
  145. #{type,jdbcType=VARCHAR},
  146. </if>
  147. </trim>
  148. </insert>
  149. <select id="countByExample" parameterType="com.gyee.frame.model.auto.GyeeorganExample" resultType="java.lang.Long">
  150. select count(*) from gyeeorgan
  151. <if test="_parameter != null">
  152. <include refid="Example_Where_Clause" />
  153. </if>
  154. </select>
  155. <update id="updateByExampleSelective" parameterType="map">
  156. update gyeeorgan
  157. <set>
  158. <if test="record.id != null">
  159. id = #{record.id,jdbcType=VARCHAR},
  160. </if>
  161. <if test="record.name != null">
  162. name = #{record.name,jdbcType=VARCHAR},
  163. </if>
  164. <if test="record.descr != null">
  165. descr = #{record.descr,jdbcType=VARCHAR},
  166. </if>
  167. <if test="record.type != null">
  168. type = #{record.type,jdbcType=VARCHAR},
  169. </if>
  170. </set>
  171. <if test="_parameter != null">
  172. <include refid="Update_By_Example_Where_Clause" />
  173. </if>
  174. </update>
  175. <update id="updateByExample" parameterType="map">
  176. update gyeeorgan
  177. set
  178. id = #{record.id,jdbcType=VARCHAR},
  179. name = #{record.name,jdbcType=VARCHAR},
  180. descr = #{record.descr,jdbcType=VARCHAR},
  181. type = #{record.type,jdbcType=VARCHAR}
  182. <if test="_parameter != null">
  183. <include refid="Update_By_Example_Where_Clause" />
  184. </if>
  185. </update>
  186. <update id="updateByPrimaryKeySelective" parameterType="com.gyee.frame.model.auto.Gyeeorgan">
  187. update gyeeorgan
  188. <set>
  189. <if test="name != null">
  190. name = #{name,jdbcType=VARCHAR},
  191. </if>
  192. <if test="descr != null">
  193. descr = #{descr,jdbcType=VARCHAR},
  194. </if>
  195. <if test="type != null">
  196. type = #{type,jdbcType=VARCHAR},
  197. </if>
  198. </set>
  199. where
  200. id = #{id,jdbcType=VARCHAR}
  201. </update>
  202. <update id="updateByPrimaryKey" parameterType="com.gyee.frame.model.auto.Gyeeorgan">
  203. update gyeeorgan
  204. set
  205. name = #{name,jdbcType=VARCHAR},
  206. descr = #{descr,jdbcType=VARCHAR},
  207. type = #{type,jdbcType=VARCHAR}
  208. where
  209. id = #{id,jdbcType=VARCHAR}
  210. </update>
  211. <select id="queryOrganByUserId" parameterType="java.lang.String" resultType="com.gyee.frame.model.auto.Gyeeorgan">
  212. select * from gyeeorgan go inner join gyeeuserorgan guo on go.id=guo.organid where guo.userid=#{userid,jdbcType=VARCHAR}
  213. </select>
  214. </mapper>