parent
7fab05a1f9
commit
fc2e72ce87
@ -1,79 +1,195 @@ |
||||
package com.dky.utils.entity; |
||||
|
||||
import cn.hutool.json.JSONObject; |
||||
|
||||
public class DevSpec { |
||||
//id
|
||||
private Integer id; |
||||
//设备类型
|
||||
private String devType; |
||||
//设备价格
|
||||
private Double devModel; |
||||
//单位
|
||||
private Double capacity; |
||||
//单元单位
|
||||
private String output; |
||||
//制热范围
|
||||
private String voltage; |
||||
//备注
|
||||
|
||||
public Integer getId() { |
||||
|
||||
/** 序号 */ |
||||
private Long id ; |
||||
/** 设备类型 */ |
||||
private String deviceType ; |
||||
/** 设备细类 */ |
||||
private String deviceSubType ; |
||||
/** 技术类型 */ |
||||
private String technologyType ; |
||||
/** 设备功率(kW) */ |
||||
private Double devicePower ; |
||||
/** 设备加热方式 */ |
||||
private String heatingMethod ; |
||||
/** 热效率 */ |
||||
private String heatingEffciency ; |
||||
/** 设备单价(万元) */ |
||||
private Double devicePrice ; |
||||
/** 设备操作人数 */ |
||||
private Integer deviceOperators ; |
||||
/** 电替代设备年人工费用(万元) */ |
||||
private Double artificialCost ; |
||||
/** 原设备的人工费用(万元) */ |
||||
private Double laborCost ; |
||||
/** 设备使用年限(年) */ |
||||
private Integer deviceLife ; |
||||
/** 设备年运行时长(小时) */ |
||||
private Integer deviceRunHours ; |
||||
/** 单台电设备参考的可供暖面积(平方米) */ |
||||
private Double heatingArea ; |
||||
/** 单台电设备制造一批产品的周期(小时) */ |
||||
private Integer manufacturingCycle ; |
||||
/** 工作容积(立方米) */ |
||||
private Double workingVolume ; |
||||
/** 产品的密度 */ |
||||
private String productDensity ; |
||||
/** 单台电设备制造一批产品的产量 */ |
||||
private String productQuality ; |
||||
/** 备注 */ |
||||
private String remarkInfo ; |
||||
|
||||
public Long getId() { |
||||
return id; |
||||
} |
||||
|
||||
public void setId(Integer id) { |
||||
public void setId(Long id) { |
||||
this.id = id; |
||||
} |
||||
|
||||
public String getDevType() { |
||||
return devType; |
||||
public String getDeviceType() { |
||||
return deviceType; |
||||
} |
||||
|
||||
public void setDeviceType(String deviceType) { |
||||
this.deviceType = deviceType; |
||||
} |
||||
|
||||
public String getDeviceSubType() { |
||||
return deviceSubType; |
||||
} |
||||
|
||||
public void setDeviceSubType(String deviceSubType) { |
||||
this.deviceSubType = deviceSubType; |
||||
} |
||||
|
||||
public String getTechnologyType() { |
||||
return technologyType; |
||||
} |
||||
|
||||
public void setTechnologyType(String technologyType) { |
||||
this.technologyType = technologyType; |
||||
} |
||||
|
||||
public Double getDevicePower() { |
||||
return devicePower; |
||||
} |
||||
|
||||
public void setDevicePower(Double devicePower) { |
||||
this.devicePower = devicePower; |
||||
} |
||||
|
||||
public String getHeatingMethod() { |
||||
return heatingMethod; |
||||
} |
||||
|
||||
public void setHeatingMethod(String heatingMethod) { |
||||
this.heatingMethod = heatingMethod; |
||||
} |
||||
|
||||
public String getHeatingEffciency() { |
||||
return heatingEffciency; |
||||
} |
||||
|
||||
public void setHeatingEffciency(String heatingEffciency) { |
||||
this.heatingEffciency = heatingEffciency; |
||||
} |
||||
|
||||
public Double getDevicePrice() { |
||||
return devicePrice; |
||||
} |
||||
|
||||
public void setDevicePrice(Double devicePrice) { |
||||
this.devicePrice = devicePrice; |
||||
} |
||||
|
||||
public Integer getDeviceOperators() { |
||||
return deviceOperators; |
||||
} |
||||
|
||||
public void setDeviceOperators(Integer deviceOperators) { |
||||
this.deviceOperators = deviceOperators; |
||||
} |
||||
|
||||
public Double getArtificialCost() { |
||||
return artificialCost; |
||||
} |
||||
|
||||
public void setArtificialCost(Double artificialCost) { |
||||
this.artificialCost = artificialCost; |
||||
} |
||||
|
||||
public Double getLaborCost() { |
||||
return laborCost; |
||||
} |
||||
|
||||
public void setLaborCost(Double laborCost) { |
||||
this.laborCost = laborCost; |
||||
} |
||||
|
||||
public Integer getDeviceLife() { |
||||
return deviceLife; |
||||
} |
||||
|
||||
public void setDeviceLife(Integer deviceLife) { |
||||
this.deviceLife = deviceLife; |
||||
} |
||||
|
||||
public Integer getDeviceRunHours() { |
||||
return deviceRunHours; |
||||
} |
||||
|
||||
public void setDeviceRunHours(Integer deviceRunHours) { |
||||
this.deviceRunHours = deviceRunHours; |
||||
} |
||||
|
||||
public Double getHeatingArea() { |
||||
return heatingArea; |
||||
} |
||||
|
||||
public void setHeatingArea(Double heatingArea) { |
||||
this.heatingArea = heatingArea; |
||||
} |
||||
|
||||
public void setDevType(String devType) { |
||||
this.devType = devType; |
||||
public Integer getManufacturingCycle() { |
||||
return manufacturingCycle; |
||||
} |
||||
|
||||
public Double getDevModel() { |
||||
return devModel; |
||||
public void setManufacturingCycle(Integer manufacturingCycle) { |
||||
this.manufacturingCycle = manufacturingCycle; |
||||
} |
||||
|
||||
public void setDevModel(Double devModel) { |
||||
this.devModel = devModel; |
||||
public Double getWorkingVolume() { |
||||
return workingVolume; |
||||
} |
||||
|
||||
public Double getCapacity() { |
||||
return capacity; |
||||
public void setWorkingVolume(Double workingVolume) { |
||||
this.workingVolume = workingVolume; |
||||
} |
||||
|
||||
public void setCapacity(Double capacity) { |
||||
this.capacity = capacity; |
||||
public String getProductDensity() { |
||||
return productDensity; |
||||
} |
||||
|
||||
public String getOutput() { |
||||
return output; |
||||
public void setProductDensity(String productDensity) { |
||||
this.productDensity = productDensity; |
||||
} |
||||
|
||||
public void setOutput(String output) { |
||||
this.output = output; |
||||
public String getProductQuality() { |
||||
return productQuality; |
||||
} |
||||
|
||||
public String getVoltage() { |
||||
return voltage; |
||||
public void setProductQuality(String productQuality) { |
||||
this.productQuality = productQuality; |
||||
} |
||||
|
||||
public void setVoltage(String voltage) { |
||||
this.voltage = voltage; |
||||
public String getRemarkInfo() { |
||||
return remarkInfo; |
||||
} |
||||
|
||||
@Override |
||||
public String toString() { |
||||
return "DevSpec{" + |
||||
"id=" + id + |
||||
", devType='" + devType + '\'' + |
||||
", devModel=" + devModel + |
||||
", capacity=" + capacity + |
||||
", output='" + output + '\'' + |
||||
", voltage='" + voltage + '\'' + |
||||
'}'; |
||||
public void setRemarkInfo(String remarkInfo) { |
||||
this.remarkInfo = remarkInfo; |
||||
} |
||||
} |
||||
|
Loading…
Reference in new issue