SysNewsInformationMapper.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  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. <!--
  4. 这个文件是自动生成的。
  5. 不要修改此文件。所有改动将在下次重新自动生成时丢失。
  6. -->
  7. <mapper namespace="com.yonge.cooleshow.cms.dal.dao.SysNewsInformationDao">
  8. <resultMap type="com.yonge.cooleshow.cms.dal.entity.SysNewsInformation" id="SysNewsInformation">
  9. <result column="id_" property="id" />
  10. <result column="title_" property="title" />
  11. <result column="content_" property="content" />
  12. <result column="cover_image_" property="coverImage" />
  13. <result column="video_cover_image_" property="videoCoverImage" />
  14. <result column="link_url_" property="linkUrl"/>
  15. <result column="type_" property="type"/>
  16. <result column="online_time_" property="onlineTime"/>
  17. <result column="offline_time_" property="offlineTime"/>
  18. <result column="sub_type_" property="subType"/>
  19. <result column="status_" property="status" typeHandler="com.yonge.toolset.mybatis.dal.CustomEnumTypeHandler" />
  20. <result column="create_time_" property="createTime" />
  21. <result column="update_time_" property="updateTime" />
  22. <result column="del_flag_" property="delFlag" />
  23. <result column="href_target_" property="hrefTarget" />
  24. <result column="order_" property="order" />
  25. <result column="memo_" property="memo" />
  26. <result column="attribute1_" property="attribute1" />
  27. <result column="attribute2_" property="attribute2" />
  28. <result column="show_time_" property="showTime" />
  29. <result column="update_by_" property="updateBy" />
  30. <result column="link_type_" property="linkType" />
  31. <result column="create_by_" property="createBy" />
  32. <result column="client_type_" property="clientType" />
  33. <result column="background_" property="background" />
  34. </resultMap>
  35. <resultMap type="com.yonge.cooleshow.cms.dto.SysNewsInformationDto" id="SysNewsInformationDto" extends="SysNewsInformation">
  36. <result column="updateName" property="updateName" />
  37. <result column="subTypeName" property="subTypeName" />
  38. </resultMap>
  39. <sql id="queryCondition">
  40. <where>
  41. sni.del_flag_=0
  42. <if test="type != null">
  43. and sni.type_ = #{type}
  44. </if>
  45. <if test="subType != null">
  46. and sni.sub_type_ = #{subType}
  47. </if>
  48. <if test="status != null">
  49. and sni.status_ = #{status}
  50. </if>
  51. <if test="title != null">
  52. and (sni.title_ like '%' #{title} '%'
  53. or sni.id_ like concat('%',#{title},'%')
  54. )
  55. </if>
  56. <if test="search != null">
  57. and sni.title_ like '%' #{search} '%'
  58. </if>
  59. <if test="subjectId != null">
  60. and find_in_set(#{subjectId},sni.subject_id_list_)
  61. </if>
  62. <if test="platformType != null and platformType != ''">
  63. <if test="platformType != 'ADMIN'" >
  64. and sni.status_ = 1
  65. <if test="type != 5">
  66. and if(sni.online_time_ is not null,sni.online_time_ &lt;= now(),1=1)
  67. and if(sni.offline_time_ is not null,sni.offline_time_ &gt;= now(),1=1)
  68. </if>
  69. <if test="type == 4 or type == 5 or type == 7">
  70. <choose>
  71. <when test="platformType == 'WEBSITE'">
  72. and sni.client_type_ = #{platformType}
  73. </when>
  74. <when test="platformType == 'STUDENT'">
  75. and sni.client_type_ = #{platformType}
  76. </when>
  77. <when test="platformType == 'TEACHER'">
  78. and sni.client_type_ = #{platformType}
  79. </when>
  80. </choose>
  81. </if>
  82. </if>
  83. <if test="platformType == 'ADMIN'" >
  84. <if test="clientType != null and clientType != ''">
  85. and sni.client_type_ = #{clientType}
  86. </if>
  87. </if>
  88. </if>
  89. <if test="excludeIds!=null and excludeIds.size()>0">
  90. AND sni.id_ NOT IN
  91. <foreach collection="excludeIds" item="excludeId" open="(" close=")" separator=",">
  92. #{excludeId}
  93. </foreach>
  94. </if>
  95. <if test="version != null and version != ''">
  96. and sni.attribute1_ = #{version}
  97. </if>
  98. <if test="attribute2 != null and attribute2 != ''">
  99. and sni.attribute2_ = #{attribute2}
  100. </if>
  101. </where>
  102. </sql>
  103. <!-- 根据主键查询一条记录 -->
  104. <select id="get" resultMap="SysNewsInformation" >
  105. SELECT * FROM sys_news_information WHERE id_ = #{id} AND del_flag_=0
  106. </select>
  107. <!-- 全查询 -->
  108. <select id="findAll" resultMap="SysNewsInformation">
  109. SELECT * FROM sys_news_information WHERE del_flag_=0 ORDER BY id_
  110. </select>
  111. <!-- 向数据库增加一条记录 -->
  112. <insert id="insert" parameterType="com.yonge.cooleshow.cms.dal.entity.SysNewsInformation" useGeneratedKeys="true" keyColumn="id" keyProperty="id">
  113. INSERT INTO sys_news_information (id_,title_,content_,cover_image_,video_cover_image_,type_,online_time_,offline_time_,sub_type_,status_,create_time_,update_time_,link_url_,href_target_,order_,del_flag_,memo_,attribute1_,attribute2_,subject_id_list_,create_by_,update_by_,show_time_,link_type_,client_type_,background_)
  114. VALUES(#{id},#{title},#{content},#{coverImage},#{videoCoverImage},#{type},#{onlineTime},#{offlineTime},#{subType},#{status, typeHandler=com.yonge.toolset.mybatis.dal.CustomEnumTypeHandler},now(),now(),#{linkUrl},#{hrefTarget},#{order},0,#{memo},#{attribute1},#{attribute2},#{subjectIdList},#{createBy},#{updateBy},#{showTime},#{linkType},#{clientType},#{background})
  115. </insert>
  116. <!-- 根据主键查询一条记录 -->
  117. <update id="update" parameterType="com.yonge.cooleshow.cms.dal.entity.SysNewsInformation">
  118. UPDATE sys_news_information
  119. <set>
  120. <if test="status != null">
  121. status_ = #{status, typeHandler=com.yonge.toolset.mybatis.dal.CustomEnumTypeHandler},
  122. </if>
  123. title_ = #{title},
  124. update_time_ = NOW(),
  125. content_ = #{content},
  126. cover_image_ = #{coverImage},
  127. video_cover_image_ = #{videoCoverImage},
  128. type_ = #{type},
  129. online_time_ = #{onlineTime},
  130. offline_time_ = #{offlineTime},
  131. sub_type_ = #{subType},
  132. link_url_ = #{linkUrl},
  133. href_target_ = #{hrefTarget},
  134. order_ = #{order},
  135. memo_ = #{memo},
  136. del_flag_ = #{delFlag},
  137. attribute1_ = #{attribute1},
  138. attribute2_ = #{attribute2},
  139. subject_id_list_ = #{subjectIdList},
  140. update_by_ = #{updateBy},
  141. link_type_ = #{linkType},
  142. client_type_ = #{clientType},
  143. background_ = #{background},
  144. show_time_ = #{showTime}
  145. </set>
  146. WHERE id_ = #{id}
  147. </update>
  148. <!-- 根据主键删除一条记录 -->
  149. <delete id="delete" >
  150. DELETE FROM sys_news_information WHERE id_ = #{id}
  151. </delete>
  152. <!-- 分页查询 -->
  153. <select id="selectPage" resultMap="SysNewsInformationDto" parameterType="map">
  154. SELECT sni.*
  155. , su.username_ as updateName
  156. , snt.name_ as subTypeName
  157. FROM sys_news_information sni
  158. left join sys_news_type snt on snt.id_ = sni.sub_type_
  159. left join sys_user su on sni.update_by_ = su.id_
  160. <include refid="queryCondition" />
  161. order by sni.status_ desc,sni.order_,sni.update_time_ desc
  162. <include refid="global.limit"/>
  163. </select>
  164. <select id="selectAppVersionInfo" resultType="java.lang.String">
  165. select avi.status_ from app_version_info avi where avi.platform_ = #{platform} and avi.version_ = #{version}
  166. </select>
  167. <!-- 查询当前表的总记录数 -->
  168. <select id="selectPageCount" resultType="int">
  169. SELECT COUNT(sni.id_) FROM sys_news_information sni
  170. <include refid="queryCondition" />
  171. </select>
  172. <select id="queryByType" resultMap="SysNewsInformation" parameterType="java.lang.Integer">
  173. SELECT * FROM sys_news_information
  174. <where>
  175. del_flag_=0
  176. <if test="type != null">
  177. and type_ = #{type}
  178. </if>
  179. </where>
  180. </select>
  181. <update id="deleteWithLogical">
  182. UPDATE sys_news_information SET del_flag_ = 1,update_time_ = NOW() WHERE id_ = #{id}
  183. </update>
  184. <!-- 分页查询 -->
  185. <select id="queryHomePage" resultMap="SysNewsInformation"
  186. parameterType="map">
  187. SELECT sni.*
  188. FROM sys_news_information sni
  189. where sni.del_flag_=0
  190. <if test="type != null">
  191. and sni.type_ = #{type}
  192. </if>
  193. <if test="subType != null and subType != ''">
  194. and sni.sub_type_ = #{subType}
  195. </if>
  196. <if test="status != null">
  197. and sni.status_ = #{status,
  198. typeHandler=com.yonge.toolset.mybatis.dal.CustomEnumTypeHandler}
  199. </if>
  200. <if test="title != null">
  201. and sni.title_ like '%' #{title} '%'
  202. </if>
  203. <if test="search != null">
  204. and sni.title_ like '%' #{search} '%'
  205. </if>
  206. <if test="excludeIds!=null and excludeIds.size()>0">
  207. AND sni.id_ NOT IN
  208. <foreach collection="excludeIds" item="excludeId" open="(" close=")" separator=",">
  209. #{excludeId}
  210. </foreach>
  211. </if>
  212. <if test="subjectId != null">
  213. and find_in_set(#{subjectId},sni.subject_id_list_)
  214. </if>
  215. group by sni.id_
  216. order by sni.status_ desc,sni.order_,sni.update_time_ desc
  217. <include refid="global.limit" />
  218. </select>
  219. <!-- 查询当前表的总记录数 -->
  220. <select id="queryHomeCount" resultType="int">
  221. SELECT COUNT(sni.id_) FROM sys_news_information sni where sni.del_flag_=0
  222. <if test="type != null">
  223. and sni.type_ = #{type}
  224. </if>
  225. <if test="subType != null">
  226. and sni.sub_type_ = #{subType}
  227. </if>
  228. <if test="status != null">
  229. and sni.status_ = #{status,
  230. typeHandler=com.yonge.toolset.mybatis.dal.CustomEnumTypeHandler}
  231. </if>
  232. <if test="title != null">
  233. and sni.title_ like '%' #{title} '%'
  234. </if>
  235. <if test="search != null">
  236. and sni.title_ like '%' #{search} '%'
  237. </if>
  238. <if test="subjectId != null">
  239. and find_in_set(#{subjectId},sni.subject_id_list_)
  240. </if>
  241. </select>
  242. <select id="queryNeedUpdateStatusList" resultMap="SysNewsInformation" >
  243. SELECT * FROM sys_news_information WHERE del_flag_ = 0 and (
  244. (online_time_ is not null and now() between online_time_ and offline_time_ and status_ = 0)
  245. or (offline_time_ is not null and offline_time_ &lt;= now() and status_ = 1)
  246. or (online_time_ is not null and online_time_ &gt;= now() and status_ = 1)
  247. )
  248. </select>
  249. <select id="queryById" resultMap="SysNewsInformationDto" >
  250. SELECT sni.*,su.username_ as updateName
  251. FROM sys_news_information sni
  252. left join sys_user su on sni.update_by_ = su.id_
  253. where sni.id_ = #{id}
  254. </select>
  255. <update id="updateStatus">
  256. UPDATE sys_news_information SET status_ = if(status_ = 0,1,0),update_time_ = NOW() WHERE id_ = #{id}
  257. </update>
  258. <select id="selectByVersionAndStatus" resultType="java.lang.Integer">
  259. select count(1)
  260. from sys_news_information sni
  261. <where>
  262. sni.del_flag_ = 0 and sni.type_ = 2
  263. <if test="status != null">
  264. and sni.status_ = #{status}
  265. </if>
  266. </where>
  267. </select>
  268. </mapper>