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);
|
}
|