|
@@ -12,8 +12,11 @@ import com.gyee.ghost.init.CacheContext;
|
|
|
import com.gyee.ghost.model.auto.*;
|
|
|
import com.gyee.ghost.model.auto.vo.FaultrecordCheckeVo;
|
|
|
import com.gyee.ghost.model.auto.vo.FaultrecordVo;
|
|
|
+import com.gyee.ghost.model.auto.vo.MainrecordCheckeVo;
|
|
|
+import com.gyee.ghost.model.auto.vo.MainrecordVo;
|
|
|
import com.gyee.ghost.service.auto.GhostService;
|
|
|
import com.gyee.ghost.service.auto.IFaultrecordService;
|
|
|
+import com.gyee.ghost.service.auto.IMainrecordService;
|
|
|
import com.gyee.ghost.service.auto.IWindpowerinfodayService;
|
|
|
import com.gyee.ghost.util.realtimesource.ExcelUtils;
|
|
|
import com.gyee.ghost.vo.InvolvedVo;
|
|
@@ -42,6 +45,9 @@ public class GhostController {
|
|
|
@Resource
|
|
|
private IWindpowerinfodayService windpowerinfodayService;
|
|
|
@Resource
|
|
|
+ private IMainrecordService mainrecordService;
|
|
|
+
|
|
|
+ @Resource
|
|
|
private IFaultrecordService faultrecordService;
|
|
|
@GetMapping("/wplist")
|
|
|
@ResponseBody
|
|
@@ -340,19 +346,22 @@ public class GhostController {
|
|
|
|
|
|
SimpleDateFormat sf= new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss");
|
|
|
List<FaultrecordVo> list = Arrays.asList(
|
|
|
- FaultrecordVo.builder().wtname("").begindate(sf.parse("2023-09-09 00:00:00")).enddate(sf.parse("2023-09-09 00:03:00")).faulttype("").faultphenomenon("").defecteliminating("").processingresults("").faultduration(0.3).impactcapacity(0.3).type("").build(),
|
|
|
|
|
|
- FaultrecordVo.builder().wtname("").enddate(sf.parse("2023-09-09 00:00:00")).enddate(sf.parse("2023-09-09 00:06:00")).faulttype("").faultphenomenon("").defecteliminating("").processingresults("").faultduration(0.5).impactcapacity(0.3).type("").build()
|
|
|
+ FaultrecordVo.builder().wtname("test1").begindate(null).enddate(null).faulttype("").faultphenomenon("").defecteliminating("").processingresults("").faultduration(0.0).impactcapacity(0.0).type("").build(),
|
|
|
+
|
|
|
+ FaultrecordVo.builder().wtname("test1").begindate(null).enddate(null).faulttype("").faultphenomenon("").defecteliminating("").processingresults("").faultduration(0.0).impactcapacity(0.0).type("").build()
|
|
|
|
|
|
);
|
|
|
|
|
|
// 输出
|
|
|
- ExcelUtils.write(response, "导入模板.xls", "导入模板", FaultrecordVo.class, list);
|
|
|
+ ExcelUtils.write(response, "导入模板.xlsx", "导入模板", FaultrecordVo.class, list);
|
|
|
}
|
|
|
|
|
|
@PostMapping("/checking")
|
|
|
@ApiOperation(value = "验证", notes = "验证")
|
|
|
public R checking(@RequestParam("file") MultipartFile file) throws Exception {
|
|
|
+
|
|
|
+ boolean result=true;
|
|
|
List<FaultrecordVo> list = ExcelUtils.read(file, FaultrecordVo.class);
|
|
|
List<FaultrecordCheckeVo> vos = new ArrayList<>();
|
|
|
if (StringUtils.notEmp(list) && !list.isEmpty()) {
|
|
@@ -367,6 +376,7 @@ public class GhostController {
|
|
|
sb.append("风机名称错误——");
|
|
|
sb.append(vo.getWtname());
|
|
|
po.setChecke(false);
|
|
|
+ result=false;
|
|
|
po.setError(vo.getWtname());
|
|
|
}else if(StringUtils.empty(vo.getBegindate()))
|
|
|
{
|
|
@@ -374,6 +384,7 @@ public class GhostController {
|
|
|
sb.append("开始时间没有——");
|
|
|
sb.append(vo.getBegindate());
|
|
|
po.setChecke(false);
|
|
|
+ result=false;
|
|
|
po.setError(String.valueOf(vo.getBegindate()));
|
|
|
|
|
|
}else if(StringUtils.empty(vo.getEnddate()))
|
|
@@ -382,6 +393,7 @@ public class GhostController {
|
|
|
sb.append("结束时间没有——");
|
|
|
sb.append(vo.getEnddate());
|
|
|
po.setChecke(false);
|
|
|
+ result=false;
|
|
|
po.setError(String.valueOf(vo.getEnddate()));
|
|
|
|
|
|
}else
|
|
@@ -392,102 +404,229 @@ public class GhostController {
|
|
|
|
|
|
}
|
|
|
}
|
|
|
- if (StringUtils.isNotNull(vos)) {
|
|
|
- return R.ok().data(vos);
|
|
|
+
|
|
|
+
|
|
|
+ if(result)
|
|
|
+ {
|
|
|
+ if (StringUtils.notEmp(list) && !list.isEmpty()) {
|
|
|
+
|
|
|
+
|
|
|
+ Faultrecord po=new Faultrecord();
|
|
|
+ for (FaultrecordVo vo : list) {
|
|
|
+
|
|
|
+
|
|
|
+ BeanUtil.copyProperties(vo, po);
|
|
|
+
|
|
|
+ po.setId(StringUtils.getUUID());
|
|
|
+ if(CacheContext.wtnamemap.containsKey(vo.getWtname()))
|
|
|
+ {
|
|
|
+
|
|
|
+ Windturbine wt=CacheContext.wtnamemap.get(vo.getWtname());
|
|
|
+ po.setWtid(wt.getId());
|
|
|
+
|
|
|
+ if(CacheContext.promap.containsKey(wt.getProjectid()))
|
|
|
+ {
|
|
|
+ Project pj=CacheContext.promap.get(wt.getProjectid());
|
|
|
+ po.setProjectid(pj.getId());
|
|
|
+ po.setProjectname(pj.getName());
|
|
|
+ }
|
|
|
+
|
|
|
+ if(CacheContext.wpmap.containsKey(wt.getWindpowerstationid()))
|
|
|
+ {
|
|
|
+ Windpowerstation wp=CacheContext.wpmap.get(wt.getWindpowerstationid());
|
|
|
+ po.setWpid(wp.getId());
|
|
|
+ po.setWpname(wp.getName());
|
|
|
+ }
|
|
|
+
|
|
|
+ if(StringUtils.notEmp(vo.getBegindate()) && StringUtils.notEmp(vo.getEnddate()))
|
|
|
+ {
|
|
|
+ po.setFaultduration(DateUtils.hoursDiff1(vo.getBegindate(),vo.getEnddate()));
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ Date begin =vo.getBegindate();
|
|
|
+
|
|
|
+
|
|
|
+ QueryWrapper<Windpowerinfoday> windturbineinfodayQueryWrapper = new QueryWrapper<>();
|
|
|
+ windturbineinfodayQueryWrapper.eq("recorddate",DateUtils.truncate(begin));
|
|
|
+ windturbineinfodayQueryWrapper.eq("foreignkeyid",po.getWpid());
|
|
|
+ List<Windpowerinfoday> windturbineinfodayList = windpowerinfodayService.list(windturbineinfodayQueryWrapper);
|
|
|
+
|
|
|
+ Map<String,Windpowerinfoday> wtdaymap=new HashMap<>();
|
|
|
+ if(!windturbineinfodayList.isEmpty())
|
|
|
+ {
|
|
|
+ for ( Windpowerinfoday wtday:windturbineinfodayList)
|
|
|
+ {
|
|
|
+ wtdaymap.put(wtday.getWindpowerstationid(),wtday);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ double gzsc=DateUtils.hoursDiff1(po.getBegindate(),po.getEnddate());
|
|
|
+
|
|
|
+ if(wtdaymap.containsKey(po.getWpid()))
|
|
|
+ {
|
|
|
+ Windpowerinfoday wpday=wtdaymap.get(po.getWpid());
|
|
|
+
|
|
|
+ if(CacheContext.wpwtlsmap.containsKey(wpday.getWindpowerstationid()))
|
|
|
+ {
|
|
|
+ List<Windturbine> wtls=CacheContext.wpwtlsmap.get(wpday.getWindpowerstationid());
|
|
|
+ double rfdl= wpday.getGeneratingcapacity();
|
|
|
+ double ssdl = new BigDecimal(rfdl).divide(new BigDecimal(wtls.size()), 2, RoundingMode.HALF_EVEN).divide(new BigDecimal(24), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(gzsc)).doubleValue();
|
|
|
+ po.setPowerloss(StringUtils.round(ssdl,2));
|
|
|
+
|
|
|
+ }
|
|
|
+ faultrecordService.saveOrUpdate(po);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if (result) {
|
|
|
+ return R.ok().data("ok");
|
|
|
+
|
|
|
}else{
|
|
|
- return R.error().message("访问失败");
|
|
|
+
|
|
|
+ return R.error().data(vos);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
@PostMapping("/import")
|
|
|
@ApiOperation(value = "导入", notes = "导入")
|
|
|
public R importExcel(@RequestParam("file") MultipartFile file) throws Exception {
|
|
|
- List<FaultrecordVo> list = ExcelUtils.read(file, FaultrecordVo.class);
|
|
|
-
|
|
|
+ boolean result=true;
|
|
|
+ List<MainrecordVo> list = ExcelUtils.read(file, MainrecordVo.class);
|
|
|
+ List<MainrecordCheckeVo> vos = new ArrayList<>();
|
|
|
if (StringUtils.notEmp(list) && !list.isEmpty()) {
|
|
|
+ for (MainrecordVo vo : list) {
|
|
|
|
|
|
+ MainrecordCheckeVo po=new MainrecordCheckeVo();
|
|
|
+ BeanUtil.copyProperties(vo, po);
|
|
|
+ if(!CacheContext.wtnamemap.containsKey(vo.getWtname()))
|
|
|
+ {
|
|
|
|
|
|
- Faultrecord po=new Faultrecord();
|
|
|
- for (FaultrecordVo vo : list) {
|
|
|
-
|
|
|
+ StringBuilder sb=new StringBuilder();
|
|
|
+ sb.append("风机名称错误——");
|
|
|
+ sb.append(vo.getWtname());
|
|
|
+ po.setChecke(false);
|
|
|
+ result=false;
|
|
|
+ po.setError(vo.getWtname());
|
|
|
+ }else if(StringUtils.empty(vo.getBegindate()))
|
|
|
+ {
|
|
|
+ StringBuilder sb=new StringBuilder();
|
|
|
+ sb.append("开始时间没有——");
|
|
|
+ sb.append(vo.getBegindate());
|
|
|
+ po.setChecke(false);
|
|
|
+ result=false;
|
|
|
+ po.setError(String.valueOf(vo.getBegindate()));
|
|
|
|
|
|
- BeanUtil.copyProperties(vo, po);
|
|
|
+ }else if(StringUtils.empty(vo.getEnddate()))
|
|
|
+ {
|
|
|
+ StringBuilder sb=new StringBuilder();
|
|
|
+ sb.append("结束时间没有——");
|
|
|
+ sb.append(vo.getEnddate());
|
|
|
+ po.setChecke(false);
|
|
|
+ result=false;
|
|
|
+ po.setError(String.valueOf(vo.getEnddate()));
|
|
|
|
|
|
- po.setId(StringUtils.getUUID());
|
|
|
- if(CacheContext.wtnamemap.containsKey(vo.getWtname()))
|
|
|
+ }else
|
|
|
{
|
|
|
+ po.setChecke(true);
|
|
|
+ }
|
|
|
+ vos.add(po);
|
|
|
|
|
|
- Windturbine wt=CacheContext.wtnamemap.get(vo.getWtname());
|
|
|
- po.setWtid(wt.getId());
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- if(CacheContext.promap.containsKey(wt.getProjectid()))
|
|
|
- {
|
|
|
- Project pj=CacheContext.promap.get(wt.getProjectid());
|
|
|
- po.setProjectid(pj.getId());
|
|
|
- po.setProjectname(pj.getName());
|
|
|
- }
|
|
|
|
|
|
- if(CacheContext.wpmap.containsKey(wt.getWindpowerstationid()))
|
|
|
- {
|
|
|
- Windpowerstation wp=CacheContext.wpmap.get(wt.getWindpowerstationid());
|
|
|
- po.setWpid(wp.getId());
|
|
|
- po.setWpname(wp.getName());
|
|
|
- }
|
|
|
+ if(result)
|
|
|
+ {
|
|
|
+ if (StringUtils.notEmp(list) && !list.isEmpty()) {
|
|
|
|
|
|
- if(StringUtils.notEmp(vo.getFaultduration()) && StringUtils.notEmp(vo.getBegindate()) && StringUtils.notEmp(vo.getEnddate()))
|
|
|
- {
|
|
|
- po.setFaultduration(DateUtils.hoursDiff1(vo.getBegindate(),vo.getEnddate()));
|
|
|
|
|
|
+ Mainrecord po=new Mainrecord();
|
|
|
+ for (MainrecordVo vo : list) {
|
|
|
|
|
|
- List<Faultrecord> resultList = new ArrayList<>();
|
|
|
|
|
|
- Date begin =vo.getBegindate();
|
|
|
+ BeanUtil.copyProperties(vo, po);
|
|
|
|
|
|
+ po.setId(StringUtils.getUUID());
|
|
|
+ if(CacheContext.wtnamemap.containsKey(vo.getWtname()))
|
|
|
+ {
|
|
|
|
|
|
- QueryWrapper<Windpowerinfoday> windturbineinfodayQueryWrapper = new QueryWrapper<>();
|
|
|
- windturbineinfodayQueryWrapper.eq("recorddate",begin);
|
|
|
- List<Windpowerinfoday> windturbineinfodayList = windpowerinfodayService.list(windturbineinfodayQueryWrapper);
|
|
|
+ Windturbine wt=CacheContext.wtnamemap.get(vo.getWtname());
|
|
|
+ po.setWtid(wt.getId());
|
|
|
|
|
|
- Map<String,Windpowerinfoday> wtdaymap=new HashMap<>();
|
|
|
- if(!windturbineinfodayList.isEmpty())
|
|
|
+ if(CacheContext.promap.containsKey(wt.getProjectid()))
|
|
|
{
|
|
|
- for ( Windpowerinfoday wtday:windturbineinfodayList)
|
|
|
- {
|
|
|
- wtdaymap.put(wtday.getWindpowerstationid(),wtday);
|
|
|
- }
|
|
|
+ Project pj=CacheContext.promap.get(wt.getProjectid());
|
|
|
+ po.setProjectid(pj.getId());
|
|
|
+ po.setProjectname(pj.getName());
|
|
|
}
|
|
|
|
|
|
- for(Faultrecord fr:resultList)
|
|
|
+ if(CacheContext.wpmap.containsKey(wt.getWindpowerstationid()))
|
|
|
{
|
|
|
- if(StringUtils.notEmp(fr.getFaultduration()))
|
|
|
- {
|
|
|
- double gzsc=fr.getFaultduration();
|
|
|
+ Windpowerstation wp=CacheContext.wpmap.get(wt.getWindpowerstationid());
|
|
|
+ po.setWpid(wp.getId());
|
|
|
+ po.setWpname(wp.getName());
|
|
|
+ }
|
|
|
+
|
|
|
+ if(StringUtils.notEmp(vo.getBegindate()) && StringUtils.notEmp(vo.getEnddate()))
|
|
|
+ {
|
|
|
+ po.setFaultduration(DateUtils.hoursDiff1(vo.getBegindate(),vo.getEnddate()));
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ Date begin =vo.getBegindate();
|
|
|
+
|
|
|
+
|
|
|
+ QueryWrapper<Windpowerinfoday> windturbineinfodayQueryWrapper = new QueryWrapper<>();
|
|
|
+ windturbineinfodayQueryWrapper.eq("recorddate",DateUtils.truncate(begin));
|
|
|
+ windturbineinfodayQueryWrapper.eq("foreignkeyid",po.getWpid());
|
|
|
+ List<Windpowerinfoday> windturbineinfodayList = windpowerinfodayService.list(windturbineinfodayQueryWrapper);
|
|
|
|
|
|
- if(wtdaymap.containsKey(fr.getWtid()))
|
|
|
+ Map<String,Windpowerinfoday> wtdaymap=new HashMap<>();
|
|
|
+ if(!windturbineinfodayList.isEmpty())
|
|
|
+ {
|
|
|
+ for ( Windpowerinfoday wtday:windturbineinfodayList)
|
|
|
{
|
|
|
- Windpowerinfoday wpday=wtdaymap.get(fr.getWtid());
|
|
|
+ wtdaymap.put(wtday.getWindpowerstationid(),wtday);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- if(CacheContext.wpwtlsmap.containsKey(wpday.getWindpowerstationid()))
|
|
|
- {
|
|
|
- List<Windturbine> wtls=CacheContext.wpwtlsmap.get(wpday.getWindpowerstationid());
|
|
|
- double rfdl= wpday.getGeneratingcapacity();
|
|
|
- double ssdl = new BigDecimal(rfdl).divide(new BigDecimal(wtls.size()), 2, RoundingMode.HALF_EVEN).divide(new BigDecimal(24), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(gzsc)).doubleValue();
|
|
|
- fr.setPowerloss(StringUtils.round(ssdl,2));
|
|
|
+ double gzsc=DateUtils.hoursDiff1(po.getBegindate(),po.getEnddate());
|
|
|
|
|
|
- faultrecordService.saveOrUpdate(fr);
|
|
|
- }
|
|
|
+ if(wtdaymap.containsKey(po.getWpid()))
|
|
|
+ {
|
|
|
+ Windpowerinfoday wpday=wtdaymap.get(po.getWpid());
|
|
|
+
|
|
|
+ if(CacheContext.wpwtlsmap.containsKey(wpday.getWindpowerstationid()))
|
|
|
+ {
|
|
|
+ List<Windturbine> wtls=CacheContext.wpwtlsmap.get(wpday.getWindpowerstationid());
|
|
|
+ double rfdl= wpday.getGeneratingcapacity();
|
|
|
+ double ssdl = new BigDecimal(rfdl).divide(new BigDecimal(wtls.size()), 2, RoundingMode.HALF_EVEN).divide(new BigDecimal(24), 2, RoundingMode.HALF_EVEN).multiply(new BigDecimal(gzsc)).doubleValue();
|
|
|
+ po.setPowerloss(StringUtils.round(ssdl,2));
|
|
|
|
|
|
}
|
|
|
+ mainrecordService.saveOrUpdate(po);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if (StringUtils.isNotNull("ok")) {
|
|
|
+
|
|
|
+
|
|
|
+ if (result) {
|
|
|
return R.ok().data("ok");
|
|
|
+
|
|
|
}else{
|
|
|
- return R.error().message("访问失败");
|
|
|
+
|
|
|
+ return R.error().data(vos);
|
|
|
}
|
|
|
}
|
|
|
|