PlatformConfigMapper.xml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  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.jsh.erp.datasource.mappers.PlatformConfigMapper">
  4. <resultMap id="BaseResultMap" type="com.jsh.erp.datasource.entities.PlatformConfig">
  5. <id column="id" jdbcType="BIGINT" property="id" />
  6. <result column="platform_key" jdbcType="VARCHAR" property="platformKey" />
  7. <result column="platform_key_info" jdbcType="VARCHAR" property="platformKeyInfo" />
  8. <result column="platform_value" jdbcType="VARCHAR" property="platformValue" />
  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, platform_key, platform_key_info, platform_value
  70. </sql>
  71. <select id="selectByExample" parameterType="com.jsh.erp.datasource.entities.PlatformConfigExample" resultMap="BaseResultMap">
  72. select
  73. <if test="distinct">
  74. distinct
  75. </if>
  76. <include refid="Base_Column_List" />
  77. from jsh_platform_config
  78. <if test="_parameter != null">
  79. <include refid="Example_Where_Clause" />
  80. </if>
  81. <if test="orderByClause != null">
  82. order by ${orderByClause}
  83. </if>
  84. </select>
  85. <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
  86. select
  87. <include refid="Base_Column_List" />
  88. from jsh_platform_config
  89. where id = #{id,jdbcType=BIGINT}
  90. </select>
  91. <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
  92. delete from jsh_platform_config
  93. where id = #{id,jdbcType=BIGINT}
  94. </delete>
  95. <delete id="deleteByExample" parameterType="com.jsh.erp.datasource.entities.PlatformConfigExample">
  96. delete from jsh_platform_config
  97. <if test="_parameter != null">
  98. <include refid="Example_Where_Clause" />
  99. </if>
  100. </delete>
  101. <insert id="insert" parameterType="com.jsh.erp.datasource.entities.PlatformConfig">
  102. insert into jsh_platform_config (id, platform_key, platform_key_info,
  103. platform_value)
  104. values (#{id,jdbcType=BIGINT}, #{platformKey,jdbcType=VARCHAR}, #{platformKeyInfo,jdbcType=VARCHAR},
  105. #{platformValue,jdbcType=VARCHAR})
  106. </insert>
  107. <insert id="insertSelective" parameterType="com.jsh.erp.datasource.entities.PlatformConfig">
  108. insert into jsh_platform_config
  109. <trim prefix="(" suffix=")" suffixOverrides=",">
  110. <if test="id != null">
  111. id,
  112. </if>
  113. <if test="platformKey != null">
  114. platform_key,
  115. </if>
  116. <if test="platformKeyInfo != null">
  117. platform_key_info,
  118. </if>
  119. <if test="platformValue != null">
  120. platform_value,
  121. </if>
  122. </trim>
  123. <trim prefix="values (" suffix=")" suffixOverrides=",">
  124. <if test="id != null">
  125. #{id,jdbcType=BIGINT},
  126. </if>
  127. <if test="platformKey != null">
  128. #{platformKey,jdbcType=VARCHAR},
  129. </if>
  130. <if test="platformKeyInfo != null">
  131. #{platformKeyInfo,jdbcType=VARCHAR},
  132. </if>
  133. <if test="platformValue != null">
  134. #{platformValue,jdbcType=VARCHAR},
  135. </if>
  136. </trim>
  137. </insert>
  138. <select id="countByExample" parameterType="com.jsh.erp.datasource.entities.PlatformConfigExample" resultType="java.lang.Long">
  139. select count(*) from jsh_platform_config
  140. <if test="_parameter != null">
  141. <include refid="Example_Where_Clause" />
  142. </if>
  143. </select>
  144. <update id="updateByExampleSelective" parameterType="map">
  145. update jsh_platform_config
  146. <set>
  147. <if test="record.id != null">
  148. id = #{record.id,jdbcType=BIGINT},
  149. </if>
  150. <if test="record.platformKey != null">
  151. platform_key = #{record.platformKey,jdbcType=VARCHAR},
  152. </if>
  153. <if test="record.platformKeyInfo != null">
  154. platform_key_info = #{record.platformKeyInfo,jdbcType=VARCHAR},
  155. </if>
  156. <if test="record.platformValue != null">
  157. platform_value = #{record.platformValue,jdbcType=VARCHAR},
  158. </if>
  159. </set>
  160. <if test="_parameter != null">
  161. <include refid="Update_By_Example_Where_Clause" />
  162. </if>
  163. </update>
  164. <update id="updateByExample" parameterType="map">
  165. update jsh_platform_config
  166. set id = #{record.id,jdbcType=BIGINT},
  167. platform_key = #{record.platformKey,jdbcType=VARCHAR},
  168. platform_key_info = #{record.platformKeyInfo,jdbcType=VARCHAR},
  169. platform_value = #{record.platformValue,jdbcType=VARCHAR}
  170. <if test="_parameter != null">
  171. <include refid="Update_By_Example_Where_Clause" />
  172. </if>
  173. </update>
  174. <update id="updateByPrimaryKeySelective" parameterType="com.jsh.erp.datasource.entities.PlatformConfig">
  175. update jsh_platform_config
  176. <set>
  177. <if test="platformKey != null">
  178. platform_key = #{platformKey,jdbcType=VARCHAR},
  179. </if>
  180. <if test="platformKeyInfo != null">
  181. platform_key_info = #{platformKeyInfo,jdbcType=VARCHAR},
  182. </if>
  183. <if test="platformValue != null">
  184. platform_value = #{platformValue,jdbcType=VARCHAR},
  185. </if>
  186. </set>
  187. where id = #{id,jdbcType=BIGINT}
  188. </update>
  189. <update id="updateByPrimaryKey" parameterType="com.jsh.erp.datasource.entities.PlatformConfig">
  190. update jsh_platform_config
  191. set platform_key = #{platformKey,jdbcType=VARCHAR},
  192. platform_key_info = #{platformKeyInfo,jdbcType=VARCHAR},
  193. platform_value = #{platformValue,jdbcType=VARCHAR}
  194. where id = #{id,jdbcType=BIGINT}
  195. </update>
  196. </mapper>