|
|
@ -4,7 +4,7 @@ public class OriginalDevice { |
|
|
|
private int equipmentType; // 设备类型(1锅炉,2窑炉,3灶台)
|
|
|
|
private int equipmentType; // 设备类型(1锅炉,2窑炉,3灶台)
|
|
|
|
private int quantity; // 台数(台)
|
|
|
|
private int quantity; // 台数(台)
|
|
|
|
private int energyType; // 能源类型(1煤,2油,3气)
|
|
|
|
private int energyType; // 能源类型(1煤,2油,3气)
|
|
|
|
private double previousYearOperatingCost; // 上年运行费用(万元)
|
|
|
|
private double lastYearFee; // 上年运行费用(万元)
|
|
|
|
private double substituteBeforeEnergyConsumption; // 替代前年能源用量
|
|
|
|
private double substituteBeforeEnergyConsumption; // 替代前年能源用量
|
|
|
|
private double electricityPrice; // 执行电价(万元)
|
|
|
|
private double electricityPrice; // 执行电价(万元)
|
|
|
|
|
|
|
|
|
|
|
@ -35,12 +35,12 @@ public class OriginalDevice { |
|
|
|
this.energyType = energyType; |
|
|
|
this.energyType = energyType; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public double getPreviousYearOperatingCost() { |
|
|
|
public double getLastYearFee() { |
|
|
|
return previousYearOperatingCost; |
|
|
|
return lastYearFee; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public void setPreviousYearOperatingCost(double previousYearOperatingCost) { |
|
|
|
public void setLastYearFee(double lastYearFee) { |
|
|
|
this.previousYearOperatingCost = previousYearOperatingCost; |
|
|
|
this.lastYearFee = lastYearFee; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public double getSubstituteBeforeEnergyConsumption() { |
|
|
|
public double getSubstituteBeforeEnergyConsumption() { |
|
|
|