|
@@ -36,11 +36,11 @@ public class ComprehensiveService {
|
|
|
public List<ProEconTestingPoint> targets(String type) {
|
|
|
QueryWrapper<ProEconTestingPoint> qw = new QueryWrapper<>();
|
|
|
if (type.equals("-1")) {
|
|
|
- qw.select(" DISTINCT uniform_code,name ").lambda().eq(ProEconTestingPoint::getTypeId, "fcc").ne(ProEconTestingPoint::getUniformCode, "ZYCGL");
|
|
|
+ qw.select(" DISTINCT uniform_code,name,value_unit ").lambda().eq(ProEconTestingPoint::getTypeId, "fcc").ne(ProEconTestingPoint::getUniformCode, "ZYCGL");
|
|
|
} else if (type.equals("-2")) {
|
|
|
- qw.select(" DISTINCT uniform_code,name ").lambda().eq(ProEconTestingPoint::getTypeId, "gcc").ne(ProEconTestingPoint::getUniformCode, "ZYCGL");
|
|
|
+ qw.select(" DISTINCT uniform_code,name,value_unit ").lambda().eq(ProEconTestingPoint::getTypeId, "gcc").ne(ProEconTestingPoint::getUniformCode, "ZYCGL");
|
|
|
} else {
|
|
|
- qw.select(" DISTINCT uniform_code,name ").lambda().in(ProEconTestingPoint::getTypeId, "gcc", "fcc").ne(ProEconTestingPoint::getUniformCode, "ZYCGL");
|
|
|
+ qw.select(" DISTINCT uniform_code,name,value_unit ").lambda().in(ProEconTestingPoint::getTypeId, "gcc", "fcc").ne(ProEconTestingPoint::getUniformCode, "ZYCGL");
|
|
|
}
|
|
|
qw.lambda().eq(ProEconTestingPoint::getSpare3,"1");
|
|
|
List<ProEconTestingPoint> list = proEconTestingPointService.list(qw);
|
|
@@ -49,7 +49,7 @@ public class ComprehensiveService {
|
|
|
|
|
|
public List<ProEconTestingPoint> wttargets(String type, String part) {
|
|
|
QueryWrapper<ProEconTestingPoint> qw = new QueryWrapper<>();
|
|
|
- qw.select(" DISTINCT uniform_code,name ").lambda().like(ProEconTestingPoint::getUniformCode, "AI");
|
|
|
+ qw.select(" DISTINCT uniform_code,name,value_unit ").lambda().like(ProEconTestingPoint::getUniformCode, "AI");
|
|
|
if (type.equals("-1")) {
|
|
|
qw.lambda().eq(ProEconTestingPoint::getTypeId, "F");
|
|
|
} else if (type.equals("-2")) {
|
|
@@ -88,6 +88,7 @@ public class ComprehensiveService {
|
|
|
vo.setCapacity(wp.getJrCapacity() + wp.getJrwindCapacity());
|
|
|
List<String> targetList = new ArrayList<>();
|
|
|
List<String> glList = new ArrayList<>();
|
|
|
+ List<String> dlList = new ArrayList<>();
|
|
|
Map<String, ProBasicPowerstationPoint> powerstationPointMap = wppointmap.get(wp.getId());
|
|
|
Arrays.stream(targetArray).forEach(t -> {
|
|
|
if (powerstationPointMap.containsKey(t)) {
|
|
@@ -95,6 +96,9 @@ public class ComprehensiveService {
|
|
|
if (powerstationPointMap.get(t).getName().contains("功率")) {
|
|
|
glList.add(powerstationPointMap.get(t).getNemCode());
|
|
|
}
|
|
|
+ if (powerstationPointMap.get(t).getName().contains("电量")) {
|
|
|
+ dlList.add(powerstationPointMap.get(t).getNemCode());
|
|
|
+ }
|
|
|
}
|
|
|
});
|
|
|
List<PointData> pointDataList = null;
|
|
@@ -107,6 +111,11 @@ public class ComprehensiveService {
|
|
|
a.setPointValueInDouble(a.getPointValueInDouble() / 1000);
|
|
|
}
|
|
|
}
|
|
|
+ for (String c : dlList) {
|
|
|
+ if (a.getPointName().equals(c)) {
|
|
|
+ a.setPointValueInDouble(a.getPointValueInDouble() / 10000);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
} catch (Exception e) {
|