|
|
@ -22,7 +22,7 @@ import com.hnac.hzims.bigmodel.interactive.vo.ExtraVO; |
|
|
|
import com.hnac.hzims.operational.station.entity.StationEntity; |
|
|
|
import com.hnac.hzims.operational.station.entity.StationEntity; |
|
|
|
import com.hnac.hzims.operational.station.feign.IStationClient; |
|
|
|
import com.hnac.hzims.operational.station.feign.IStationClient; |
|
|
|
import com.hnac.hzims.equipment.feign.IEmInfoClient; |
|
|
|
import com.hnac.hzims.equipment.feign.IEmInfoClient; |
|
|
|
import com.hnac.hzims.equipment.vo.EminfoAndEmParamVo; |
|
|
|
import com.hnac.hzims.equipment.vo.EminfoAndEmParamVo; |
|
|
|
import com.hnac.hzims.equipment.vo.RideDeviceVo; |
|
|
|
import com.hnac.hzims.equipment.vo.RideDeviceVo; |
|
|
|
import com.hnac.hzims.operational.fill.feign.IGenerateClient; |
|
|
|
import com.hnac.hzims.operational.fill.feign.IGenerateClient; |
|
|
|
import com.hnac.hzims.operational.main.constant.HomePageConstant; |
|
|
|
import com.hnac.hzims.operational.main.constant.HomePageConstant; |
|
|
@ -92,8 +92,6 @@ public class InteractiveServiceImpl implements IInteractiveService { |
|
|
|
|
|
|
|
|
|
|
|
private final RedisTemplate redisTemplate; |
|
|
|
private final RedisTemplate redisTemplate; |
|
|
|
|
|
|
|
|
|
|
|
private final IStationClient stationClient; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private final IAnalyseDataSearchClient analyseDataSearchClient; |
|
|
|
private final IAnalyseDataSearchClient analyseDataSearchClient; |
|
|
|
|
|
|
|
|
|
|
|
private final ExtraResolveStrategyService extraResolveStrategyService; |
|
|
|
private final ExtraResolveStrategyService extraResolveStrategyService; |
|
|
@ -108,40 +106,23 @@ public class InteractiveServiceImpl implements IInteractiveService { |
|
|
|
ExtraVO extraVO = new ExtraVO(); |
|
|
|
ExtraVO extraVO = new ExtraVO(); |
|
|
|
extraVO.setType(TypeEnum.PARAMS.getType()); |
|
|
|
extraVO.setType(TypeEnum.PARAMS.getType()); |
|
|
|
extraVO.setFuncCode("stations_num"); |
|
|
|
extraVO.setFuncCode("stations_num"); |
|
|
|
String stationType = ""; |
|
|
|
String label; |
|
|
|
SearchStationTypeEnum stationTypeEnum = SearchStationTypeEnum.getTypeEnum(enumType); |
|
|
|
SearchStationTypeEnum stationTypeEnum = SearchStationTypeEnum.getTypeEnum(enumType); |
|
|
|
if(SearchTypeEnum.REAL.getSearchType().equals(type)) { |
|
|
|
if(!startTime.equals(endTime)) { |
|
|
|
startTime = null; |
|
|
|
label = String.format("自%s到%s时间为止,",startTime,endTime); |
|
|
|
endTime = null; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
else { |
|
|
|
else { |
|
|
|
switch(stationTypeEnum) { |
|
|
|
|
|
|
|
case HYDROPOWER_TOTAL: |
|
|
|
|
|
|
|
case WIND_POWER_TOTAL: |
|
|
|
|
|
|
|
case ENERGY_STORAGE_TOTAL: |
|
|
|
|
|
|
|
case PHOTOVOLTAIC_TOTAL: |
|
|
|
|
|
|
|
case CHARGE_TOTAL: |
|
|
|
|
|
|
|
stationType = stationTypeEnum.getStationType(); |
|
|
|
|
|
|
|
startTime = null; |
|
|
|
startTime = null; |
|
|
|
break; |
|
|
|
endTime = null; |
|
|
|
case HYDROPOWER_NUM: |
|
|
|
label = "目前"; |
|
|
|
case WIND_POWER_NUM: |
|
|
|
|
|
|
|
case ENERGY_STORAGE_NUM: |
|
|
|
|
|
|
|
case PHOTOVOLTAIC_NUM: |
|
|
|
|
|
|
|
case CHARGE_NUM: |
|
|
|
|
|
|
|
stationType = stationTypeEnum.getStationType(); |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
throw new ServiceException("未查询到相关"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
R<List<StationEntity>> stationListR = stationClient.getStationByTypeAndDuration(startTime, endTime, stationType); |
|
|
|
R<List<StationEntity>> stationListR = stationClient.getStationByTypeAndDuration(startTime, endTime, stationTypeEnum.getStationType()); |
|
|
|
Assert.isTrue(stationListR.isSuccess(),() -> { |
|
|
|
Assert.isTrue(stationListR.isSuccess(),() -> { |
|
|
|
throw new ServiceException("获取接入站点数量失败!"); |
|
|
|
throw new ServiceException("获取接入站点数量失败!"); |
|
|
|
}); |
|
|
|
}); |
|
|
|
Map<String, Object> params = new HashMap<>(); |
|
|
|
Map<String, Object> params = new HashMap<>(); |
|
|
|
params.put("searchStationType",stationTypeEnum.getSearchStationType()); |
|
|
|
params.put("searchStationType",stationTypeEnum.getSearchStationType()); |
|
|
|
params.put("num",stationTypeEnum.getSearchStationType()); |
|
|
|
params.put("label",label + String.format(stationTypeEnum.getLabel(),stationListR.getData().size())); |
|
|
|
params.put("startTime",startTime); |
|
|
|
params.put("startTime",startTime); |
|
|
|
params.put("endTime",endTime); |
|
|
|
params.put("endTime",endTime); |
|
|
|
extraVO.setParams(params); |
|
|
|
extraVO.setParams(params); |
|
|
@ -192,18 +173,7 @@ public class InteractiveServiceImpl implements IInteractiveService { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void addQuestionSessionId(String sessionId) { |
|
|
|
private void addQuestionSessionId(String sessionId) { |
|
|
|
// 添加redis问题会话
|
|
|
|
redisTemplate.opsForList().leftPush(HZIMS_BIGMODEL_ASK_KEY,sessionId); |
|
|
|
Object json = redisTemplate.opsForValue().get(HZIMS_BIGMODEL_ASK_KEY); |
|
|
|
|
|
|
|
if(ObjectUtil.isEmpty(json)){ |
|
|
|
|
|
|
|
List<String> asks = Collections.singletonList(sessionId); |
|
|
|
|
|
|
|
redisTemplate.opsForValue().set(HZIMS_BIGMODEL_ASK_KEY,JSONObject.toJSONString(asks)); |
|
|
|
|
|
|
|
}else{ |
|
|
|
|
|
|
|
List<String> asks = JSONObject.parseArray(json.toString(),String.class); |
|
|
|
|
|
|
|
if(!asks.contains(sessionId)){ |
|
|
|
|
|
|
|
asks.add(sessionId); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
redisTemplate.opsForValue().set(HZIMS_BIGMODEL_ASK_KEY,JSONObject.toJSONString(asks)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|