package com.yssh.entity.xls; public class DayExcel { /** * 日均值 */ private String rjz; /** * 累计 */ private String lj; /** * 累计同比 */ private String ljtb; /** * 受影响因素及原因 */ private String ys; /** * 风速 */ private String fs; /** * 风向 */ private String fx; /** * 温度 */ private String wd; public DayExcel() { } /** * 日报Excel * * @param rjz 日均值 * @param lj 累计 * @param ljtb 累计同比 * @param ys 受影响因素及原因 * @param fs 风速 * @param fx 风向 * @param wd 温度 */ public DayExcel(String rjz, String lj, String ljtb, String ys, String fs, String fx, String wd) { this.rjz = rjz; this.lj = lj; this.ljtb = ljtb; this.ys = ys; this.fs = fs; this.fx = fx; this.wd = wd; } public String getRjz() { return rjz; } public void setRjz(String rjz) { this.rjz = rjz; } 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 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; } }