package com.yssh.entity.xls;
|
|
/**
|
* 月报Excel
|
* @author WWW
|
* @date 2023-08-08
|
*/
|
public class MonthExcel {
|
/**
|
* 上月
|
*/
|
private String sy;
|
|
/**
|
* 月环比
|
*/
|
private String yhb;
|
|
/**
|
* 月同期
|
*/
|
private String ytq;
|
|
/**
|
* 月同比
|
*/
|
private String ytb;
|
|
/**
|
* 月环比2
|
*/
|
private String yhb2;
|
|
/**
|
* 累计
|
*/
|
private String lj;
|
|
/**
|
* 累计同比
|
*/
|
private String ljtb;
|
|
/**
|
* 较前一年均值变化幅度
|
*/
|
private String qyn;
|
|
/**
|
* 受影响因素及原因
|
*/
|
private String ys;
|
|
/**
|
* 风速
|
*/
|
private String fs;
|
|
/**
|
* 风向
|
*/
|
private String fx;
|
|
/**
|
* 温度
|
*/
|
private String wd;
|
|
public MonthExcel() {
|
}
|
|
/**
|
* 月报Excel
|
*
|
* @param sy 上月
|
* @param yhb 月环比
|
* @param ytq 月同期
|
* @param ytb 月同比
|
* @param yhb2 月环比2
|
* @param lj 累计
|
* @param ljtb 累计同比
|
* @param qyn 较前一年均值变化幅度
|
* @param ys 受影响因素及原因
|
* @param fs 风速
|
* @param fx 风向
|
* @param wd 温度
|
*/
|
public MonthExcel(String sy, String yhb, String ytq, String ytb, String yhb2, String lj, String ljtb, String qyn, String ys, String fs, String fx, String wd) {
|
this.sy = sy;
|
this.yhb = yhb;
|
this.ytq = ytq;
|
this.ytb = ytb;
|
this.yhb2 = yhb2;
|
this.lj = lj;
|
this.ljtb = ljtb;
|
this.qyn = qyn;
|
this.ys = ys;
|
this.fs = fs;
|
this.fx = fx;
|
this.wd = wd;
|
}
|
|
public String getSy() {
|
return sy;
|
}
|
|
public void setSy(String sy) {
|
this.sy = sy;
|
}
|
|
public String getYhb() {
|
return yhb;
|
}
|
|
public void setYhb(String yhb) {
|
this.yhb = yhb;
|
}
|
|
public String getYtq() {
|
return ytq;
|
}
|
|
public void setYtq(String ytq) {
|
this.ytq = ytq;
|
}
|
|
public String getYtb() {
|
return ytb;
|
}
|
|
public void setYtb(String ytb) {
|
this.ytb = ytb;
|
}
|
|
public String getYhb2() {
|
return yhb2;
|
}
|
|
public void setYhb2(String yhb2) {
|
this.yhb2 = yhb2;
|
}
|
|
public String getLj() {
|
return lj;
|
}
|
|
public void setLj(String lj) {
|
this.lj = lj;
|
}
|
|
public String getLjtb() {
|
return ljtb;
|
}
|
|
public void setLjtb(String ljtb) {
|
this.ljtb = ljtb;
|
}
|
|
public String getQyn() {
|
return qyn;
|
}
|
|
public void setQyn(String qyn) {
|
this.qyn = qyn;
|
}
|
|
public String getYs() {
|
return ys;
|
}
|
|
public void setYs(String ys) {
|
this.ys = ys;
|
}
|
|
public String getFs() {
|
return fs;
|
}
|
|
public void setFs(String fs) {
|
this.fs = fs;
|
}
|
|
public String getFx() {
|
return fx;
|
}
|
|
public void setFx(String fx) {
|
this.fx = fx;
|
}
|
|
public String getWd() {
|
return wd;
|
}
|
|
public void setWd(String wd) {
|
this.wd = wd;
|
}
|
}
|