AlarmHistoryMapper.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  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.wisdom.alarm.schedule.mapper.AlarmHisotryMapper">
  4. <insert id="singleInsert" >
  5. insert into ${tbName} (id, alerttime, messagetype,snapid, datainfo)
  6. values
  7. (#{item.id}, #{item.alertTime}, #{item.messageType},#{item.snapId},#{item.dataInfo})
  8. </insert>
  9. <insert id="batchInsert" parameterType="java.util.List" useGeneratedKeys="false">
  10. insert into ${tbName} ( ID, ALERTTIME, MESSAGETYPE, SNAPID, DATAINFO,ALERTTEXTLAST)
  11. <foreach collection="list" item="item" index="index" separator="union all" >
  12. ( select
  13. #{item.id}, #{item.alertTime}, #{item.messageType},#{item.snapId},#{item.dataInfo},#{item.alertTextLast}
  14. from dual )
  15. </foreach>
  16. </insert>
  17. <!--<insert id="batchInsert" useGeneratedKeys="false">-->
  18. <!--INSERT ALL-->
  19. <!--<foreach item="item" index="index" collection="list">-->
  20. <!--into ${tbName}-->
  21. <!--values-->
  22. <!--(#{item.id}, #{item.alertTime}, #{item.messageType},#{item.snapId},#{item.dataInfo})-->
  23. <!--</foreach>-->
  24. <!--SELECT 1 FROM DUAL-->
  25. <!--</insert>-->
  26. <!-- 单表查询 -->
  27. <select id="pageQueryAll" parameterType="java.util.Map" resultType="com.gyee.wisdom.alarm.schedule.model.AlarmHistoryInfo">
  28. select a.*,
  29. b.stationid,
  30. b.windturbineid,
  31. b.projectid,
  32. b.lineid,
  33. b.alertvalue,
  34. b.category1,
  35. b.category2,
  36. b.category3,
  37. b.rank,
  38. b.stationname,
  39. b.projectname,
  40. b.linename,
  41. b.windturbinename,
  42. b.alerttext,
  43. b.modelid
  44. from ${tbName} a
  45. left join alarmsnap b on a.snapid = b.id
  46. <where>
  47. 1=1
  48. <if test="starttime !=null and endtime !=null">
  49. and a.alerttime &gt;= #{starttime} and a.alerttime &lt;= #{endtime}
  50. </if>
  51. <if test="stid !=null and stid !=''">
  52. and b.stationid=#{stid}
  53. </if>
  54. <if test="wtid !=null and wtid !=''">
  55. and b.windturbineid=#{wtid}
  56. </if>
  57. <if test="category1 !=null and category1 !=''">
  58. and b.category1=#{category1}
  59. </if>
  60. <if test="category2 !=null and category2 !=''">
  61. and b.category2=#{category2}
  62. </if>
  63. <if test="rank !=null and rank !=''">
  64. and b.rank=#{rank}
  65. </if>
  66. <if test="modelid !=null and modelid !=''">
  67. and b.modelid=#{modelid}
  68. </if>
  69. <if test="snapid !=null ">
  70. and a.snapid=#{snapid}
  71. </if>
  72. <if test="messagetype !=null ">
  73. and a.messagetype=#{messagetype}
  74. </if>
  75. <if test="keyword !=null and keyword !=''">
  76. and b.alerttext like #{keyword}
  77. </if>
  78. </where>
  79. order by a.alerttime desc
  80. </select>
  81. <!-- 联合查询 -->
  82. <select id="pageQueryAll2" parameterType="java.util.Map" resultType="com.gyee.wisdom.alarm.schedule.model.AlarmHistoryInfo">
  83. select a.*,
  84. b.stationid,
  85. b.windturbineid,
  86. b.projectid,
  87. b.lineid,
  88. b.alertvalue,
  89. b.category1,
  90. b.category2,
  91. b.category3,
  92. b.rank,
  93. b.stationname,
  94. b.projectname,
  95. b.linename,
  96. b.windturbinename,
  97. b.alerttext,
  98. b.modelid
  99. from (select * from alarmhistory_by_${yearmonth}) a
  100. left join alarmsnap b on a.snapid = b.id
  101. <where>
  102. 1=1
  103. <if test="starttime !=null and endtime !=null">
  104. and a.alerttime &gt;= #{starttime,jdbcType=DATE} and a.alerttime &lt;= #{endtime,jdbcType=DATE}
  105. </if>
  106. <if test="stid !=null and stid !=''">
  107. and b.stationid=#{stid}
  108. </if>
  109. <if test="wtid !=null and wtid !=''">
  110. and b.windturbineid=#{wtid}
  111. </if>
  112. <if test="category1 !=null and category1 !=''">
  113. and b.category1=#{category1}
  114. </if>
  115. <if test="category2 !=null and category2 !=''">
  116. and b.category2=#{category2}
  117. </if>
  118. <if test="rank !=null and rank !=''">
  119. and b.rank=#{rank}
  120. </if>
  121. <if test="modelid !=null and modelid !=''">
  122. and b.modelid=#{modelid}
  123. </if>
  124. <if test="snapid !=null ">
  125. and a.snapid=#{snapid}
  126. </if>
  127. <if test="messagetype !=null ">
  128. and a.messagetype=#{messagetype}
  129. </if>
  130. <if test="keyword !=null and keyword !=''">
  131. and b.alerttext like #{keyword}
  132. </if>
  133. </where>
  134. order by a.alerttime desc
  135. </select>
  136. <select id="selectAlarmHistory" parameterType="java.util.Map" resultType="com.gyee.wisdom.alarm.schedule.entity.AlarmHistory">
  137. select * from ${tbName} where snapid = #{snapid}
  138. and messagetype = '1'
  139. and alerttime &gt;= #{starttime,jdbcType=DATE} and alerttime &lt; #{endtime,jdbcType=DATE}
  140. </select>
  141. <select id="selectAlarmSnapCount" parameterType="java.util.Map" resultType="java.lang.Integer">
  142. select count(*) from ${tbName} where id = #{id}
  143. </select>
  144. <select id="selectSnapCount" parameterType="java.util.Map" resultType="java.lang.Integer">
  145. select count(*) from ${tbName} where snapid = #{snapid}
  146. and messagetype = '1'
  147. and alerttime &gt;= #{starttime,jdbcType=DATE} and alerttime &lt; #{endtime,jdbcType=DATE}
  148. </select>
  149. <select id="selectHistoryAlarmSnapAndWarning"
  150. resultType="com.gyee.wisdom.alarm.schedule.entity.FaultWarning">
  151. select h.id,
  152. a.stationid,
  153. h.snapid,
  154. a.windturbineid,
  155. a.windturbinename,
  156. a.lastupdatetime,
  157. w.ednavalue,
  158. h.alerttime,
  159. w.warningtypeid
  160. from ${tbName} h
  161. left join alarmsnap a on h.snapid = a.id
  162. left join warning2 w on a.alertvalue = w.ednavalue
  163. and a.modelid = w.modelid
  164. <where>
  165. and a.category1 = 'windturbine'
  166. and h.messagetype = '1'
  167. and
  168. <if test="starttime !=null and endtime !=null">
  169. h.alerttime &gt;= #{starttime,jdbcType=DATE} and h.alerttime &lt; #{endtime,jdbcType=DATE}
  170. </if>
  171. </where>
  172. </select>
  173. <update id="timedCreatTable">
  174. CREATE TABLE alarmhistory_${stationname}_${yearmonth} (
  175. "id" numeric(20) not null
  176. constraint pk_alarmhistory_${stationname}_${yearmonth}
  177. primary key,
  178. "alerttime" timestamp not null,
  179. "messagetype" char not null,
  180. "snapid" numeric(20) not null,
  181. "datainfo" varchar(20),
  182. "alerttextlast" varchar(50)
  183. )
  184. </update>
  185. <update id="timedAlterTable">
  186. <!-- postgresql不需要关联表空间因此不做操作-->
  187. <!-- alter table alarmhistory_${stationname}_${yearmonth}-->
  188. </update>
  189. <update id="timedCreatAlerttimeIndex">
  190. create index IX_AH_${stationname}_${yearmonth}_alerttime on alarmhistory_${stationname}_${yearmonth} ("alerttime")
  191. </update>
  192. <update id="timedCreatSnapidIndex">
  193. create index IX_AH_${stationname}_${yearmonth}_snapid on alarmhistory_${stationname}_${yearmonth} ("snapid")
  194. </update>
  195. <select id="isHasTable" resultType="java.lang.Integer">
  196. select count(*) from information_schema.tables where table_schema='public' and table_type='BASE TABLE' and
  197. table_name=LOWER('alarmhistory_${stationname}_${yearmonth}');
  198. </select>
  199. </mapper>