whycxzp
2025-02-28 78bdbf03741d03e047d034a1418a240e10b75c9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<?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.whyc.mapper.PwrdevAlarmMapper">
    <!--第三方接口获取所有实时告警数据-->
    <select id="getPwrdevAlarm" resultType="com.whyc.pojo.PwrdevAlarm">
        select alarm.*,inf.StationName,inf.StationName3 from db_pwrdev_alarm.tb_pwrdev_alarm
        alarm,db_pwrdev_inf.tb_pwrdev_inf
        inf
        where alarm.PowerDeviceId = inf.PowerDeviceId
        and alarm.PowerDeviceId in
        <foreach collection="powerDeviceIds" item="item" separator="," open="(" close=")">
            #{item}
        </foreach>
        ORDER BY
        alarm.alm_start_time DESC
    </select>
 
    <select id="getPwrdevAlarm2" resultType="com.whyc.pojo.PwrdevAlarm">
        select alarm.*,inf.StationName,inf.StationName3 from db_pwrdev_alarm.tb_pwrdev_alarm
        alarm,db_pwrdev_inf.tb_pwrdev_inf
        inf
        where alarm.PowerDeviceId = inf.PowerDeviceId
        <!--and alarm.PowerDeviceId in
        <foreach collection="powerDeviceIds" item="item" separator="," open="(" close=")">
            #{item}
        </foreach>-->
        ORDER BY
        alarm.alm_start_time DESC
    </select>
 
    <select id="getSendPwrdevAlarm" resultType="com.whyc.pojo.PwrdevAlarm">
        SELECT
        alarm.*,
        inf.StationName,
        inf.StationName3,
        u.record_time
        FROM
        db_pwrdev_alarm.tb_pwrdev_alarm alarm
        INNER JOIN db_pwrdev_inf.tb_pwrdev_inf inf ON alarm.PowerDeviceId = inf.PowerDeviceId
        LEFT JOIN db_alarm.tb_alarm_user u ON alarm.num = u.alarm_id
        WHERE
        StationId IN (
        SELECT DISTINCT
        inf.StationId
        FROM
        ( SELECT StationId FROM db_battinf.tb_battinf UNION SELECT StationId FROM db_pwrdev_inf.tb_pwrdev_inf ) inf,
        db_user.tb_user_battgroup_baojigroup_battgroup,
        db_user.tb_user_battgroup_baojigroup_usr,
        db_user.tb_user_inf
        WHERE
        db_user.tb_user_battgroup_baojigroup_battgroup.StationId = inf.StationId
        AND db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id = db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
        AND db_user.tb_user_inf.uid = db_user.tb_user_battgroup_baojigroup_usr.uid
        AND db_user.tb_user_inf.uid = #{uId}
        )
        ORDER BY
        alarm.alm_start_time DESC
    </select>
 
    <select id="getAllPage" resultType="com.whyc.pojo.PwrdevAlarm">
        select alarm.*,inf.StationName,inf.StationName1,inf.StationName2,inf.StationName3,inf.StationName5,inf.StationId from db_pwrdev_alarm.tb_pwrdev_alarm
        alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        <where>
            alarm.PowerDeviceId = inf.PowerDeviceId
            <if test="stationName1!=null ">
                and stationName1 like CONCAT('%',#{stationName1},'%')
            </if>
            <if test="stationName2!=null ">
                and stationName2 like CONCAT('%',#{stationName2},'%')
            </if>
            <if test="stationName5!=null ">
                and stationName5 like CONCAT('%',#{stationName5},'%')
            </if>
            <if test="stationName3!=null ">
                and stationName3 like CONCAT('%',#{stationName3},'%')
            </if>
            <if test="almSource==0">
                and alm_source!=100
            </if>
            <if test="almSource!=0">
                and alm_source=#{almSource}
            </if>
            <if test="almTypes!=null and almTypes.size>0">
                <foreach collection="almTypes" item="almType" open="and alm_type in (" close=")" separator=",">
                   #{almType}
                </foreach>
            </if>
            <if test="almLevels!=null and almLevels.size>0">
                <foreach collection="almLevels" item="almLevel" open="and alm_level in (" close=")" separator=",">
                    #{almLevel}
                </foreach>
            </if>
            and StationId in ( select distinct inf.StationId from
            (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
            db_user.tb_user_battgroup_baojigroup_battgroup,
            db_user.tb_user_battgroup_baojigroup_usr,
            db_user.tb_user_inf
            where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
            and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
            and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
            and db_user.tb_user_inf.uid=#{usrId} )
        </where>
        ORDER BY
        alarm.alm_start_time DESC
    </select>
 
    <select id="getAlarmNum" parameterType="java.lang.Integer" resultType="java.lang.Integer">
        select count(*) as num from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        where alarm.PowerDeviceId = inf.PowerDeviceId
        and inf.StationId in ( select distinct inf.StationId from
        (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
        db_user.tb_user_battgroup_baojigroup_battgroup,
        db_user.tb_user_battgroup_baojigroup_usr,
        db_user.tb_user_inf
        where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
        and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
        and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
        and db_user.tb_user_inf.uid=#{uid} ) ;
    </select>
 
    <select id="getRealTimeWithLevel1" parameterType="java.lang.Integer" resultType="java.lang.Integer">
        select count(*) as num from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        where alarm.PowerDeviceId = inf.PowerDeviceId
        and alarm.alm_level=1
        and inf.StationId in ( select distinct inf.StationId from
        (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
        db_user.tb_user_battgroup_baojigroup_battgroup,
        db_user.tb_user_battgroup_baojigroup_usr,
        db_user.tb_user_inf
        where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
        and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
        and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
        and db_user.tb_user_inf.uid=#{uid} ) ;
    </select>
 
    <select id="getRealTimeWithLevel1JY" parameterType="java.lang.Integer" resultType="java.lang.Integer">
        select count(*) as num from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        where alarm.PowerDeviceId = inf.PowerDeviceId
          and alarm.alm_level=1
 
    </select>
 
    <select id="getAllPage2" resultType="com.whyc.pojo.PwrdevAlarm">
        select  alarm.*,inf.StationName,inf.PowerDeviceName from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        <where>
            alarm.PowerDeviceId = inf.PowerDeviceId
            <if test="stationName1!=null ">
                and stationName1 like CONCAT('%',#{stationName1},'%')
            </if>
            <if test="stationName2!=null ">
                and stationName2 like CONCAT('%',#{stationName2},'%')
            </if>
            <if test="stationName5!=null ">
                and stationName5 like CONCAT('%',#{stationName5},'%')
            </if>
            <if test="stationName3!=null ">
                and stationName3 like CONCAT('%',#{stationName3},'%')
            </if>
            <if test="almSource==0">
                and alm_source!=100
            </if>
            <if test="almSource!=0">
                and alm_source=#{almSource}
            </if>
            <if test="almTypes!=null and almTypes.size>0">
                <foreach collection="almTypes" item="almType" open="and alm_type in (" close=")" separator=",">
                    #{almType}
                </foreach>
            </if>
            <if test="almLevels!=null and almLevels.size>0">
                <foreach collection="almLevels" item="almLevel" open="and alm_level in (" close=")" separator=",">
                    #{almLevel}
                </foreach>
            </if>
            and StationId in ( select distinct inf.StationId from
            (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
            db_user.tb_user_battgroup_baojigroup_battgroup,
            db_user.tb_user_battgroup_baojigroup_usr,
            db_user.tb_user_inf
            where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
            and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
            and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
            and db_user.tb_user_inf.uid=#{usrId} )
        </where>
        ORDER BY
        alarm.alm_start_time DESC
    </select>
    <select id="getSeriousAlarmCount" resultType="java.lang.Integer">
        select count(*) from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        where alarm.PowerDeviceId = inf.PowerDeviceId
        and alm_cleared_type=0
        and alm_level=1
        and inf.StationId in ( select distinct inf.StationId from
        (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
        db_user.tb_user_battgroup_baojigroup_battgroup,
        db_user.tb_user_battgroup_baojigroup_usr,
        db_user.tb_user_inf
        where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
        and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
        and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
        and db_user.tb_user_inf.uid=#{uid} ) ;
    </select>
 
    <select id="getRealAlarmFoot" resultType="com.whyc.pojo.PwrdevAlarm">
        select  alarm.*,inf.StationName,inf.StationName1,inf.StationName2,inf.StationName3,inf.StationName4,inf.StationName5 from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        <where>
            alarm.PowerDeviceId = inf.PowerDeviceId
            and alarm.alm_cleared_type=0
            and alarm.alm_is_confirmed = 0
            and alarm.alm_start_time >= #{yesterday}
            and inf.StationId in ( select distinct inf.StationId from
            (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
            db_user.tb_user_battgroup_baojigroup_battgroup,
            db_user.tb_user_battgroup_baojigroup_usr,
            db_user.tb_user_inf
            where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
            and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
            and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
            and db_user.tb_user_inf.uid=#{uId} )
        </where>
        ORDER BY
        alarm.alm_start_time DESC
    </select>
    <select id="getRealAlarmListWithLevel1" resultType="com.whyc.pojo.PwrdevAlarm">
        select  alarm.*,inf.StationName,inf.StationName1,inf.StationName2,inf.StationName3,inf.StationName4,inf.StationName5 from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        <where>
            alarm.PowerDeviceId = inf.PowerDeviceId
            and alarm.alm_level=1
            and inf.StationId in ( select distinct inf.StationId from
            (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
            db_user.tb_user_battgroup_baojigroup_battgroup,
            db_user.tb_user_battgroup_baojigroup_usr,
            db_user.tb_user_inf
            where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
            and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
            and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
            and db_user.tb_user_inf.uid=#{uId} )
        </where>
        ORDER BY
        alarm.alm_start_time DESC
    </select>
    <select id="getList" resultType="com.whyc.pojo.PwrdevAlarm">
        select  alarm.*,inf.StationName,inf.StationName3,inf.stationId from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        <where>
            alarm.PowerDeviceId = inf.PowerDeviceId
            and alarm.alm_cleared_type=0
            and alarm.alm_is_confirmed = 0
            <if test="type==1">
            and DATEDIFF(alm_start_time,NOW())=0
            </if>
            and alarm.alm_type in (110121,110122,110010)
            and inf.StationId in ( select distinct inf.StationId from
            (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
            db_user.tb_user_battgroup_baojigroup_battgroup,
            db_user.tb_user_battgroup_baojigroup_usr,
            db_user.tb_user_inf
            where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
            and
            db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
            and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
            and db_user.tb_user_inf.uid=#{uId} )
        </where>
        ORDER BY
        alarm.alm_start_time DESC
    </select>
    <select id="serchByLevel" resultType="java.lang.Integer">
        select count(*) as countLevel
        from db_pwrdev_alarm.tb_pwrdev_alarm alarm,
        db_pwrdev_inf.tb_pwrdev_inf inf
        <where>
            alarm.PowerDeviceId = inf.PowerDeviceId
            and alm_level = #{alarmLevel}
            <if test="almTypes!=null and almTypes.size>0">
                <foreach collection="almTypes" item="almType" open="and alm_type in (" close=")" separator=",">
                    #{almType}
                </foreach>
            </if>
            and StationId in (select distinct inf.StationId
            from (select StationId
            from db_battinf.tb_battinf
            union
            select StationId
            from db_pwrdev_inf.tb_pwrdev_inf) inf
            , db_user.tb_user_battgroup_baojigroup_battgroup
            , db_user.tb_user_battgroup_baojigroup_usr
            , db_user.tb_user_inf
            where db_user.tb_user_battgroup_baojigroup_battgroup.StationId = inf.StationId
            and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id =
            db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
            and db_user.tb_user_inf.uid = db_user.tb_user_battgroup_baojigroup_usr.uid
            and db_user.tb_user_inf.uid = #{uId})
        </where>
 
    </select>
    <select id="getAnalysis" resultType="com.whyc.pojo.PwrdevAlarm">
        select alm_type as almType,count(alm_type) as num
        from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        where alarm.PowerDeviceId = inf.PowerDeviceId
        and alm_type in
        <foreach collection="types" separator="," open="(" close=")" item="alarm_type">
            #{alarm_type}
        </foreach>
        and inf.StationId in ( select distinct inf.StationId from
        (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
        db_user.tb_user_battgroup_baojigroup_battgroup,
        db_user.tb_user_battgroup_baojigroup_usr,
        db_user.tb_user_inf
        where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
        and
        db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
        and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
        and db_user.tb_user_inf.uid=#{userId} )
        group by alm_type
    </select>
 
    <select id="getAnalysisJY" resultType="com.whyc.pojo.PwrdevAlarm">
        select alm_type as almType,count(alm_type) as num
        from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        where alarm.PowerDeviceId = inf.PowerDeviceId
        and alm_type in
        <foreach collection="types" separator="," open="(" close=")" item="alarm_type">
            #{alarm_type}
        </foreach>
        group by alm_type
    </select>
 
    <select id="getpwrAlm" resultType="java.lang.Integer">
        select count(1)
        from db_pwrdev_alarm.tb_pwrdev_alarm
        where tb_pwrdev_alarm.PowerDeviceId in (
            select distinct PowerDeviceId
            from db_pwrdev_inf.tb_pwrdev_inf
            where tb_pwrdev_inf.stationid = #{stationId})
    </select>
    <select id="getPalmToday" resultType="com.whyc.pojo.PwrdevAlarm">
        SELECT alm_level, alm_cleared_type
        from db_pwrdev_alarm.tb_pwrdev_alarm
        where tb_pwrdev_alarm.PowerDeviceId in (select distinct tb_pwrdev_inf.PowerDeviceId
                                                from db_pwrdev_inf.tb_pwrdev_inf,
                                                     db_user.tb_user_battgroup_baojigroup_battgroup,
                                                     db_user.tb_user_battgroup_baojigroup_usr,
                                                     db_user.tb_user_inf
                                                where db_user.tb_user_battgroup_baojigroup_battgroup.StationId =
                                                      db_pwrdev_inf.tb_pwrdev_inf.StationId
                                                  and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id =
                                                      db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
                                                  and db_user.tb_user_inf.uid =
                                                      db_user.tb_user_battgroup_baojigroup_usr.uid
                                                  and db_user.tb_user_inf.uid = #{userId})
    </select>
    <select id="getStationList" resultType="java.lang.Integer">
        SELECT distinct tb_pwrdev_inf.StationId
        FROM db_pwrdev_alarm.tb_pwrdev_alarm alarm,
             db_pwrdev_inf.tb_pwrdev_inf
        WHERE alarm.PowerDeviceId = tb_pwrdev_inf.PowerDeviceId
          AND tb_pwrdev_inf.StationId IN (
            select distinct tb_pwrdev_inf.StationId
            from db_pwrdev_inf.tb_pwrdev_inf,
                 db_user.tb_user_battgroup_baojigroup_battgroup,
                 db_user.tb_user_battgroup_baojigroup_usr,
                 db_user.tb_user_inf
            where db_user.tb_user_battgroup_baojigroup_battgroup.StationId =
                  db_pwrdev_inf.tb_pwrdev_inf.StationId
              and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id =
                  db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
              and db_user.tb_user_inf.uid =
                  db_user.tb_user_battgroup_baojigroup_usr.uid
              and db_user.tb_user_inf.uid = #{userId}
        )
    </select>
    <select id="getQualityAnalysisStation" resultType="java.lang.Integer">
        select count(DISTINCT (stationId))
        from db_pwrdev_inf.tb_pwrdev_inf,
             db_pwrdev_alarm.tb_pwrdev_alarm
        where tb_pwrdev_inf.PowerDeviceId = tb_pwrdev_alarm.PowerDeviceId
          and StationId in (select distinct tb_pwrdev_inf.StationId
                            from db_pwrdev_inf.tb_pwrdev_inf,
                                 db_user.tb_user_battgroup_baojigroup_battgroup,
                                 db_user.tb_user_battgroup_baojigroup_usr,
                                 db_user.tb_user_inf
                            where db_user.tb_user_battgroup_baojigroup_battgroup.StationId =
                                  db_pwrdev_inf.tb_pwrdev_inf.StationId
                              and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id =
                                  db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
                              and db_user.tb_user_inf.uid =
                                  db_user.tb_user_battgroup_baojigroup_usr.uid
                              and db_user.tb_user_inf.uid = #{userId})
    </select>
    <select id="getCountByStationIds" resultType="java.lang.Integer">
        select count(distinct d.num)
        from db_pwrdev_inf.tb_pwrdev_inf b,
        db_pwrdev_alarm.tb_pwrdev_alarm d
        where b.PowerDeviceId = d.PowerDeviceId
        <if test="level!=null">
            and d.alm_level = #{level}
            and d.alm_severity = 1
        </if>
        and b.StationId in
        <foreach collection="stationIdList" item="item" separator="," open="(" close=")">
            #{item}
        </foreach>
    </select>
    <select id="getListByStationIds" resultType="com.whyc.pojo.PwrdevAlarm">
        select distinct d.*,b.StationName,b.StationName1,b.StationName2,b.StationName3,b.StationName5,b.StationId
        from db_pwrdev_inf.tb_pwrdev_inf b,
        db_pwrdev_alarm.tb_pwrdev_alarm d
        where b.PowerDeviceId = d.PowerDeviceId
        and d.alm_level = 1
        and d.alm_severity = 1
        and b.StationId in
        <foreach collection="list" item="item" separator="," open="(" close=")">
            #{item}
        </foreach>
    </select>
    <select id="getLevelListByUserId" resultType="com.whyc.pojo.PwrdevAlarm">
        select alm_level,StationName5 as stationName5 from db_pwrdev_alarm.tb_pwrdev_alarm alarm,db_pwrdev_inf.tb_pwrdev_inf inf
        where alarm.PowerDeviceId = inf.PowerDeviceId
        and inf.StationId in ( select distinct inf.StationId from
        (select StationId from db_battinf.tb_battinf union select StationId from db_pwrdev_inf.tb_pwrdev_inf ) inf,
        db_user.tb_user_battgroup_baojigroup_battgroup,
        db_user.tb_user_battgroup_baojigroup_usr,
        db_user.tb_user_inf
        where db_user.tb_user_battgroup_baojigroup_battgroup.StationId=inf.StationId
        and db_user.tb_user_battgroup_baojigroup_usr.baoji_group_id=db_user.tb_user_battgroup_baojigroup_battgroup.baoji_group_id
        and db_user.tb_user_inf.uid=db_user.tb_user_battgroup_baojigroup_usr.uid
        and db_user.tb_user_inf.uid=#{userId} )
    </select>
</mapper>