whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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
package com.whyc.mapper;
 
import com.whyc.dto.result.DischargeState;
import com.whyc.pojo.Battinf;
import com.whyc.pojo.Fbs9100State;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface Fbs9100StateMapper extends CustomMapper<Fbs9100State> {
        List<Fbs9100State> searchByCondition(@Param("devErrcommcount") int devErrcommcount, @Param("uId") int uId);
 
        List<Fbs9100State> getList(Integer deviceId, Integer workState, Long uId);
 
        List<Fbs9100State> search6185NuclearCap(int uId);
 
        //第三方接口太供30楼
        List<Fbs9100State> getRealtime(@Param("deviceIds") List deviceIds);
 
        //首页获取停电机房和核容放电机房
        List<Fbs9100State> getStateList(int userId);
 
        //首页上点击停电站
        List<Battinf> searchPowerOff(String uId);
 
        //首页上点击核容放电站
        List<Battinf> searchCheckCapDischarge(String uId);
 
        List<Fbs9100State> getListWithoutZJDYBTSE2(int userId, int type);
 
        //山西晋源特定接口
        List<Fbs9100State> getListWithoutZJDYBTSE2JY(@Param("type") int type);
 
 
        //今日放电站点统计
        List<DischargeState> getChargeStaticToday(int userId);
 
        //实时停电放电
        int getJcAnalysis(int userId);
}