|
@@ -91,8 +91,8 @@ public class LeaderboardService {
|
|
|
if (c == wc.getSpeed()) {
|
|
|
vo.setValue1(wc.getSpeed());
|
|
|
if (StringUtils.notEmp(type) && type.equals(SJBZ) && null != modelmap) {
|
|
|
- if (modelmap.containsKey(String.valueOf(wc.getSpeed()))) {
|
|
|
- ProBasicModelPowerRd mp = modelmap.get(String.valueOf(wc.getSpeed()));
|
|
|
+ if (modelmap.containsKey(wc.getSpeed())) {
|
|
|
+ ProBasicModelPowerRd mp = modelmap.get(wc.getSpeed());
|
|
|
vo.setValue3(mp.getEnsurePower());
|
|
|
} else {
|
|
|
vo.setValue3(0.0);
|
|
@@ -104,8 +104,8 @@ public class LeaderboardService {
|
|
|
vo.setValue3(wc.getOptimalPower());
|
|
|
|
|
|
} else if (StringUtils.notEmp(type) && type.equals(ZYBZ) && null != modelmap) {
|
|
|
- if (modelmap.containsKey(String.valueOf(wc.getSpeed()))) {
|
|
|
- ProBasicModelPowerRd mp = modelmap.get(String.valueOf(wc.getSpeed()));
|
|
|
+ if (modelmap.containsKey(wc.getSpeed())) {
|
|
|
+ ProBasicModelPowerRd mp = modelmap.get(wc.getSpeed());
|
|
|
vo.setValue3(mp.getEnsurePower());
|
|
|
} else {
|
|
|
vo.setValue3(0.0);
|
|
@@ -264,7 +264,7 @@ public class LeaderboardService {
|
|
|
|
|
|
if(StringUtils.notEmp(stid))
|
|
|
{
|
|
|
- List<ProEconWtCurveFitting> stmonthls = proEconWtCurveFittingService.comparechatAjax(wtId,recorddate);
|
|
|
+ List<ProEconWtCurveFitting> stmonthls = proEconWtCurveFittingService.comparechatAjax(stid,recorddate);
|
|
|
|
|
|
if (null != stmonthls && !stmonthls.isEmpty()) {
|
|
|
|
|
@@ -399,8 +399,8 @@ public class LeaderboardService {
|
|
|
if (c == wc.getSpeed()) {
|
|
|
vo.setValue1(wc.getSpeed());
|
|
|
if (StringUtils.notEmp(type) && type.equals(SJBZ) && null != modelmap) {
|
|
|
- if (modelmap.containsKey(String.valueOf(wc.getSpeed()))) {
|
|
|
- ProBasicModelPowerRd mp = modelmap.get(String.valueOf(wc.getSpeed()));
|
|
|
+ if (modelmap.containsKey(wc.getSpeed())) {
|
|
|
+ ProBasicModelPowerRd mp = modelmap.get(wc.getSpeed());
|
|
|
vo.setValue3(mp.getEnsurePower());
|
|
|
} else {
|
|
|
vo.setValue3(0.0);
|
|
@@ -415,8 +415,8 @@ public class LeaderboardService {
|
|
|
name1 = "实际功率";
|
|
|
name2 = "最优功率";
|
|
|
} else if (StringUtils.notEmp(type) && type.equals(ZYBZ) && null != modelmap) {
|
|
|
- if (modelmap.containsKey(String.valueOf(wc.getSpeed()))) {
|
|
|
- ProBasicModelPowerRd mp = modelmap.get(String.valueOf(wc.getSpeed()));
|
|
|
+ if (modelmap.containsKey(wc.getSpeed())) {
|
|
|
+ ProBasicModelPowerRd mp = modelmap.get(wc.getSpeed());
|
|
|
vo.setValue3(mp.getEnsurePower());
|
|
|
} else {
|
|
|
vo.setValue3(0.0);
|