123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="com.gyee.wisdom.alarm.schedule.mapper.AlarmHisotryMapper">
- <insert id="singleInsert" >
- insert into ${tbName} (id, alerttime, messagetype,snapid, datainfo)
- values
- (#{item.id}, #{item.alertTime}, #{item.messageType},#{item.snapId},#{item.dataInfo})
- </insert>
- <insert id="batchInsert" parameterType="java.util.List" useGeneratedKeys="false">
- insert into ${tbName} ( ID, ALERTTIME, MESSAGETYPE, SNAPID, DATAINFO,ALERTTEXTLAST)
- <foreach collection="list" item="item" index="index" separator="union all" >
- ( select
- #{item.id}, #{item.alertTime}, #{item.messageType},#{item.snapId},#{item.dataInfo},#{item.alertTextLast}
- from dual )
- </foreach>
- </insert>
- <!--<insert id="batchInsert" useGeneratedKeys="false">-->
- <!--INSERT ALL-->
- <!--<foreach item="item" index="index" collection="list">-->
- <!--into ${tbName}-->
- <!--values-->
- <!--(#{item.id}, #{item.alertTime}, #{item.messageType},#{item.snapId},#{item.dataInfo})-->
- <!--</foreach>-->
- <!--SELECT 1 FROM DUAL-->
- <!--</insert>-->
- <!-- 单表查询 -->
- <select id="pageQueryAll" parameterType="java.util.Map" resultType="com.gyee.wisdom.alarm.schedule.model.AlarmHistoryInfo">
- select a.*,
- b.stationid,
- b.windturbineid,
- b.projectid,
- b.lineid,
- b.alertvalue,
- b.category1,
- b.category2,
- b.category3,
- b.rank,
- b.stationname,
- b.projectname,
- b.linename,
- b.windturbinename,
- b.alerttext,
- b.modelid
- from ${tbName} a
- left join alarmsnap b on a.snapid = b.id
- <where>
- 1=1
- <if test="starttime !=null and endtime !=null">
- and a.alerttime >= #{starttime} and a.alerttime <= #{endtime}
- </if>
- <if test="stid !=null and stid !=''">
- and b.stationid=#{stid}
- </if>
- <if test="wtid !=null and wtid !=''">
- and b.windturbineid=#{wtid}
- </if>
- <if test="category1 !=null and category1 !=''">
- and b.category1=#{category1}
- </if>
- <if test="category2 !=null and category2 !=''">
- and b.category2=#{category2}
- </if>
- <if test="rank !=null and rank !=''">
- and b.rank=#{rank}
- </if>
- <if test="modelid !=null and modelid !=''">
- and b.modelid=#{modelid}
- </if>
- <if test="snapid !=null ">
- and a.snapid=#{snapid}
- </if>
- <if test="messagetype !=null ">
- and a.messagetype=#{messagetype}
- </if>
- <if test="keyword !=null and keyword !=''">
- and b.alerttext like #{keyword}
- </if>
- </where>
- order by a.alerttime desc
- </select>
- <!-- 联合查询 -->
- <select id="pageQueryAll2" parameterType="java.util.Map" resultType="com.gyee.wisdom.alarm.schedule.model.AlarmHistoryInfo">
- select a.*,
- b.stationid,
- b.windturbineid,
- b.projectid,
- b.lineid,
- b.alertvalue,
- b.category1,
- b.category2,
- b.category3,
- b.rank,
- b.stationname,
- b.projectname,
- b.linename,
- b.windturbinename,
- b.alerttext,
- b.modelid
- from (select * from alarmhistory_by_${yearmonth}) a
- left join alarmsnap b on a.snapid = b.id
- <where>
- 1=1
- <if test="starttime !=null and endtime !=null">
- and a.alerttime >= #{starttime,jdbcType=DATE} and a.alerttime <= #{endtime,jdbcType=DATE}
- </if>
- <if test="stid !=null and stid !=''">
- and b.stationid=#{stid}
- </if>
- <if test="wtid !=null and wtid !=''">
- and b.windturbineid=#{wtid}
- </if>
- <if test="category1 !=null and category1 !=''">
- and b.category1=#{category1}
- </if>
- <if test="category2 !=null and category2 !=''">
- and b.category2=#{category2}
- </if>
- <if test="rank !=null and rank !=''">
- and b.rank=#{rank}
- </if>
- <if test="modelid !=null and modelid !=''">
- and b.modelid=#{modelid}
- </if>
- <if test="snapid !=null ">
- and a.snapid=#{snapid}
- </if>
- <if test="messagetype !=null ">
- and a.messagetype=#{messagetype}
- </if>
- <if test="keyword !=null and keyword !=''">
- and b.alerttext like #{keyword}
- </if>
- </where>
- order by a.alerttime desc
- </select>
- <select id="selectAlarmHistory" parameterType="java.util.Map" resultType="com.gyee.wisdom.alarm.schedule.entity.AlarmHistory">
- select * from ${tbName} where snapid = #{snapid}
- and messagetype = '1'
- and alerttime >= #{starttime,jdbcType=DATE} and alerttime < #{endtime,jdbcType=DATE}
- </select>
- <select id="selectAlarmSnapCount" parameterType="java.util.Map" resultType="java.lang.Integer">
- select count(*) from ${tbName} where id = #{id}
- </select>
- <select id="selectSnapCount" parameterType="java.util.Map" resultType="java.lang.Integer">
- select count(*) from ${tbName} where snapid = #{snapid}
- and messagetype = '1'
- and alerttime >= #{starttime,jdbcType=DATE} and alerttime < #{endtime,jdbcType=DATE}
- </select>
- <select id="selectHistoryAlarmSnapAndWarning"
- resultType="com.gyee.wisdom.alarm.schedule.entity.FaultWarning">
- select h.id,
- a.stationid,
- h.snapid,
- a.windturbineid,
- a.windturbinename,
- a.lastupdatetime,
- w.ednavalue,
- h.alerttime,
- w.warningtypeid
- from ${tbName} h
- left join alarmsnap a on h.snapid = a.id
- left join warning2 w on a.alertvalue = w.ednavalue
- and a.modelid = w.modelid
- <where>
- and a.category1 = 'windturbine'
- and h.messagetype = '1'
- and
- <if test="starttime !=null and endtime !=null">
- h.alerttime >= #{starttime,jdbcType=DATE} and h.alerttime < #{endtime,jdbcType=DATE}
- </if>
- </where>
- </select>
- <update id="timedCreatTable">
- CREATE TABLE alarmhistory_${stationname}_${yearmonth} (
- "id" numeric(20) not null
- constraint pk_alarmhistory_${stationname}_${yearmonth}
- primary key,
- "alerttime" timestamp not null,
- "messagetype" char not null,
- "snapid" numeric(20) not null,
- "datainfo" varchar(20),
- "alerttextlast" varchar(50)
- )
- </update>
- <update id="timedAlterTable">
- <!-- postgresql不需要关联表空间因此不做操作-->
- <!-- alter table alarmhistory_${stationname}_${yearmonth}-->
- </update>
- <update id="timedCreatAlerttimeIndex">
- create index IX_AH_${stationname}_${yearmonth}_alerttime on alarmhistory_${stationname}_${yearmonth} ("alerttime")
- </update>
- <update id="timedCreatSnapidIndex">
- create index IX_AH_${stationname}_${yearmonth}_snapid on alarmhistory_${stationname}_${yearmonth} ("snapid")
- </update>
- <select id="isHasTable" resultType="java.lang.Integer">
- select count(*) from information_schema.tables where table_schema='public' and table_type='BASE TABLE' and
- table_name=LOWER('alarmhistory_${stationname}_${yearmonth}');
- </select>
- </mapper>
|