电科院-电能替代模型工具开发
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.8 KiB

package com.dky.entity;
public class OriginalDevice {
private int equipmentType; // 设备类型(1锅炉,2窑炉,3灶台)
private int quantity; // 台数(台)
private int energyType; // 能源类型(1煤,2油,3气)
private double previousYearOperatingCost; // 上年运行费用(万元)
private double substituteBeforeEnergyConsumption; // 替代前年能源用量
private double electricityPrice; // 执行电价(万元)
// 构造方法(可以根据需要添加其他构造方法)
// Getter 和 Setter 方法
public int getEquipmentType() {
return equipmentType;
}
public void setEquipmentType(int equipmentType) {
this.equipmentType = equipmentType;
}
public int getQuantity() {
return quantity;
}
public void setQuantity(int quantity) {
this.quantity = quantity;
}
public int getEnergyType() {
return energyType;
}
public void setEnergyType(int energyType) {
this.energyType = energyType;
}
public double getPreviousYearOperatingCost() {
return previousYearOperatingCost;
}
public void setPreviousYearOperatingCost(double previousYearOperatingCost) {
this.previousYearOperatingCost = previousYearOperatingCost;
}
public double getSubstituteBeforeEnergyConsumption() {
return substituteBeforeEnergyConsumption;
}
public void setSubstituteBeforeEnergyConsumption(double substituteBeforeEnergyConsumption) {
this.substituteBeforeEnergyConsumption = substituteBeforeEnergyConsumption;
}
public double getElectricityPrice() {
return electricityPrice;
}
public void setElectricityPrice(double electricityPrice) {
this.electricityPrice = electricityPrice;
}
}