package com.yssh.entity.xls; public class MonthExcel { /** * 上月 */ private String sy; /** * 月环比 */ private String yhb; /** * 月同期 */ private String ytq; /** * 月同比 */ private String ytb; /** * 累计 */ private String lj; /** * 累计同比 */ private String ljtb; /** * 较前一年均值变化幅度 */ private String qyn; /** * 受影响因素及原因 */ private String ys; /** * 风速 */ private String fs; /** * 风向 */ private String fx; /** * 温度 */ private String wd; public MonthExcel() { } public MonthExcel(String sy, String yhb, String ytq, String ytb, 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.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 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; } }