SysAnnouncementMapper.xml 11 KB

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