Compare commits
No commits in common. '27c05b01e237765d826875a11b2fb374df390906' and '11d808a0bab3a5253d82d0ad68595dfc565ef8ca' have entirely different histories.
27c05b01e2
...
11d808a0ba
@ -1,36 +0,0 @@ |
||||
package com.dky.utils; |
||||
|
||||
import com.dky.utils.enums.EnergyEmissions; |
||||
import com.dky.utils.enums.EnergyPriceType; |
||||
|
||||
import java.util.EnumSet; |
||||
import java.util.concurrent.atomic.AtomicReference; |
||||
|
||||
public class GetThisEnergyEmissions { |
||||
|
||||
public static Double getThisEnergyEmission(Integer code) { |
||||
// 二氧化碳排放系数
|
||||
AtomicReference<Double> co2EmissionFactor = new AtomicReference<>(0.0); |
||||
EnumSet<EnergyEmissions> daysSet = EnumSet.allOf(EnergyEmissions.class); |
||||
daysSet.forEach(day -> { |
||||
if (code.equals(day.getCode())){ |
||||
co2EmissionFactor.set(day.getCo2EmissionFactor()); |
||||
} |
||||
}); |
||||
return co2EmissionFactor.get(); |
||||
} |
||||
|
||||
public static Double getThisEnergyPrice(Integer code) { |
||||
// 二氧化碳排放系数
|
||||
AtomicReference<Double> price = new AtomicReference<>(0.0); |
||||
EnumSet<EnergyPriceType> daysSet = EnumSet.allOf(EnergyPriceType.class); |
||||
daysSet.forEach(day -> { |
||||
if (code.equals(day.getCode())){ |
||||
price.set(day.getPrice()); |
||||
} |
||||
}); |
||||
return price.get(); |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue