package com.hdl.photovoltaic.ui.bean;
|
|
import java.io.Serializable;
|
|
/**
|
* 社会贡献实体类
|
*/
|
public class SocialContributionBean implements Serializable {
|
|
private String coal;//节约标准煤
|
private String co2;//CO2减排量
|
private String treePlanting;//等效植树量
|
|
public String getCoal() {
|
return coal == null ? "" : coal;
|
}
|
|
public void setCoal(String coal) {
|
this.coal = coal;
|
}
|
|
public String getCo2() {
|
return co2 == null ? "" : co2;
|
}
|
|
public void setCo2(String co2) {
|
this.co2 = co2;
|
}
|
|
public String getTreePlanting() {
|
return treePlanting == null ? "" : treePlanting;
|
}
|
|
public void setTreePlanting(String treePlanting) {
|
this.treePlanting = treePlanting;
|
}
|
|
|
}
|