|
@@ -11,17 +11,17 @@ import com.gyee.runeconomy.init.CacheContext;
|
|
|
import com.gyee.runeconomy.mapper.auto.ProEconEquipmentInfoDayTopMapper;
|
|
|
import com.gyee.runeconomy.model.auto.ProBasicPowerstation;
|
|
|
import com.gyee.runeconomy.model.auto.ProEconEquipmentInfoDayTop;
|
|
|
+import com.gyee.runeconomy.model.auto.TurbineInfoDay;
|
|
|
import com.gyee.runeconomy.service.TokenService;
|
|
|
import com.gyee.runeconomy.service.auto.IProEconEquipmentInfoDayTopService;
|
|
|
+import com.gyee.runeconomy.service.auto.ITurbineInfoDayService;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
-import org.springframework.web.context.request.RequestContextHolder;
|
|
|
-import org.springframework.web.context.request.ServletRequestAttributes;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
import java.time.LocalDate;
|
|
|
import java.time.Year;
|
|
|
import java.util.*;
|
|
|
+import java.util.function.Function;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
@@ -40,10 +40,52 @@ public class ProEconEquipmentInfoDayTopServiceImpl extends ServiceImpl<ProEconEq
|
|
|
private TokenService tokenService;
|
|
|
@Resource
|
|
|
private ProEconEquipmentInfoDayTopMapper proEconEquipmentInfoDayTopMapper;
|
|
|
+ @Resource
|
|
|
+ private ITurbineInfoDayService turbineInfoDayService;
|
|
|
|
|
|
@Override
|
|
|
public IPage<ProEconEquipmentInfoDayTop> getEquipmentInfoDayTopList(String companyId, String windpowerstationId, Integer types, String staType, String date, Integer pageNum, Integer pageSize) {
|
|
|
|
|
|
+ IPage<TurbineInfoDay> andList = getTopAndList(windpowerstationId, date, pageNum, pageSize);
|
|
|
+ IPage<ProEconEquipmentInfoDayTop> resultPage = getEquipmentInfoDayTopList_bf(companyId, windpowerstationId, types, staType, date, pageNum, pageSize);
|
|
|
+ resultPage.setRecords(turbs2equipmentidt(resultPage.getRecords(),andList.getRecords()));
|
|
|
+ return resultPage;
|
|
|
+ }
|
|
|
+
|
|
|
+ private List<ProEconEquipmentInfoDayTop> turbs2equipmentidt(List<ProEconEquipmentInfoDayTop> peeidtRecords, List<TurbineInfoDay> tidRecords) {
|
|
|
+ if (peeidtRecords == null || peeidtRecords.isEmpty() || tidRecords == null || tidRecords.isEmpty()) return Collections.emptyList();
|
|
|
+ Map<String, TurbineInfoDay> dayMap = tidRecords.stream().collect(Collectors.toMap(TurbineInfoDay::getTurbineId, Function.identity()));
|
|
|
+ peeidtRecords.forEach(peeidt->{
|
|
|
+ TurbineInfoDay day = dayMap.get(peeidt.getWindturbineId());
|
|
|
+ //"dayfdl": 10.96,
|
|
|
+ peeidt.setDayfdl(day.getRfdl());
|
|
|
+ peeidt.setDayllfdl(day.getLlfdl());
|
|
|
+ peeidt.setDayfs(day.getPjfs());
|
|
|
+ // "daygl": 359.37,平均功率
|
|
|
+ peeidt.setDaygzssdl(day.getGzss());
|
|
|
+ peeidt.setDayxdssdl(day.getXdss());
|
|
|
+ peeidt.setDaywhssdl(day.getFjhjxss());
|
|
|
+ peeidt.setDayxnssdl(day.getXnss());
|
|
|
+ peeidt.setDaylyxs(day.getLyxs());
|
|
|
+ peeidt.setDaysbklyl(day.getKlyl());
|
|
|
+ // "daydxkyxs": 100.0,等效可用系数
|
|
|
+ peeidt.setDayyxfss(day.getYxfss());
|
|
|
+ peeidt.setDayjfpl(day.getJfpl());
|
|
|
+ peeidt.setDayglyzxxs(day.getGlyzxxs());
|
|
|
+ });
|
|
|
+ return peeidtRecords;
|
|
|
+ }
|
|
|
+
|
|
|
+ public IPage<TurbineInfoDay> getTopAndList(String windpowerstationId, String date, Integer pageNum, Integer pageSize) {
|
|
|
+ QueryWrapper<TurbineInfoDay> qw = new QueryWrapper<>();
|
|
|
+ qw.lambda().eq(TurbineInfoDay::getStationId, windpowerstationId)
|
|
|
+ .eq(TurbineInfoDay::getRecordDate, DateUtils.parseDate(date)).orderByAsc(TurbineInfoDay::getTurbineId);
|
|
|
+ IPage<TurbineInfoDay> page = new Page<>(pageNum, pageSize);
|
|
|
+ turbineInfoDayService.page(page, qw);
|
|
|
+ return page;
|
|
|
+ }
|
|
|
+ public IPage<ProEconEquipmentInfoDayTop> getEquipmentInfoDayTopList_bf(String companyId, String windpowerstationId, Integer types, String staType, String date, Integer pageNum, Integer pageSize) {
|
|
|
+
|
|
|
QueryWrapper<ProEconEquipmentInfoDayTop> qw = new QueryWrapper<>();
|
|
|
Page<ProEconEquipmentInfoDayTop> page = new Page<>(pageNum, pageSize);
|
|
|
LocalDate today = LocalDate.now();
|
|
@@ -134,8 +176,46 @@ public class ProEconEquipmentInfoDayTopServiceImpl extends ServiceImpl<ProEconEq
|
|
|
return resultPage;
|
|
|
}
|
|
|
|
|
|
+ public List<TurbineInfoDay> getTopAndList(String windturbineId, String beginDate, String endDate) {
|
|
|
+ QueryWrapper<TurbineInfoDay> qw = new QueryWrapper<>();
|
|
|
+ qw.lambda().eq(TurbineInfoDay::getTurbineId, windturbineId).orderByAsc(TurbineInfoDay::getRecordDate)
|
|
|
+ .between(TurbineInfoDay::getRecordDate, DateUtils.parseDate(beginDate), DateUtils.parseDate(endDate));
|
|
|
+ List<TurbineInfoDay> list = turbineInfoDayService.list(qw);
|
|
|
+ return list;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public List<ProEconEquipmentInfoDayTop> getEquipmentInfoDayTopHistoryList(String windturbineId, Integer types, String beginDate, String endDate) {
|
|
|
+ List<ProEconEquipmentInfoDayTop> listBf = getEquipmentInfoDayTopHistoryList_bf(windturbineId, types, beginDate, endDate);
|
|
|
+ List<TurbineInfoDay> andList = getTopAndList(windturbineId, beginDate, endDate);
|
|
|
+ return turbs2equipmentidt2(listBf, andList);
|
|
|
+ }
|
|
|
+
|
|
|
+ private List<ProEconEquipmentInfoDayTop> turbs2equipmentidt2(List<ProEconEquipmentInfoDayTop> peeidtRecords, List<TurbineInfoDay> tidRecords) {
|
|
|
+ if (peeidtRecords == null || peeidtRecords.isEmpty() || tidRecords == null || tidRecords.isEmpty()) return Collections.emptyList();
|
|
|
+ Map<Date, TurbineInfoDay> dayMap = tidRecords.stream().collect(Collectors.toMap(TurbineInfoDay::getRecordDate, Function.identity()));
|
|
|
+ peeidtRecords.forEach(peeidt->{
|
|
|
+ TurbineInfoDay day = dayMap.get(peeidt.getRecordDate());
|
|
|
+ //"dayfdl": 10.96,
|
|
|
+ peeidt.setDayfdl(day.getRfdl());
|
|
|
+ peeidt.setDayllfdl(day.getLlfdl());
|
|
|
+ peeidt.setDayfs(day.getPjfs());
|
|
|
+ // "daygl": 359.37,平均功率
|
|
|
+ peeidt.setDaygzssdl(day.getGzss());
|
|
|
+ peeidt.setDayxdssdl(day.getXdss());
|
|
|
+ peeidt.setDaywhssdl(day.getFjhjxss());
|
|
|
+ peeidt.setDayxnssdl(day.getXnss());
|
|
|
+ peeidt.setDaylyxs(day.getLyxs());
|
|
|
+ peeidt.setDaysbklyl(day.getKlyl());
|
|
|
+ // "daydxkyxs": 100.0,等效可用系数
|
|
|
+ peeidt.setDayyxfss(day.getYxfss());
|
|
|
+ peeidt.setDayjfpl(day.getJfpl());
|
|
|
+ peeidt.setDayglyzxxs(day.getGlyzxxs());
|
|
|
+ });
|
|
|
+ return peeidtRecords;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<ProEconEquipmentInfoDayTop> getEquipmentInfoDayTopHistoryList_bf(String windturbineId, Integer types, String beginDate, String endDate) {
|
|
|
|
|
|
QueryWrapper<ProEconEquipmentInfoDayTop> qw = new QueryWrapper<>();
|
|
|
|