package cn.com.goldenwater.dcproj.model; import cn.com.goldenwater.core.model.BaseBean; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /** * entity:RsvrWork * * @author xuw * @date 2019-3-19 */ @ApiModel(value = "RsvrWork", description = "小水库督查工作对象") public class RsvrWork extends BaseBean implements Serializable { @ApiModelProperty(value = "督查类型", name = "typeName") private String typeName = "小水库"; @ApiModelProperty(value = "省编号", name = "adCode") private String adCode; @ApiModelProperty(value = "省名称", name = "adName") private String adName; @ApiModelProperty(value = "机构节点编码", name = "code") private String code; @ApiModelProperty(value = "机构节点名称", name = "name") private String name; @ApiModelProperty(value = "组", name = "group") private int group; @ApiModelProperty(value = "人", name = "pers") private int pers; @ApiModelProperty(value = "省", name = "pros") private int pros; @ApiModelProperty(value = "县", name = "country") private int country; @ApiModelProperty(value = "水库数", name = "rsvr") private int rsvr; @ApiModelProperty(value = "小一型水库数", name = "rsvrOne") private int rsvrOne; @ApiModelProperty(value = "小二型水库数", name = "rsvrTwo") private int rsvrTwo; @ApiModelProperty(value="中型水库数",name="rsvrThree") private int rsvrThree; @ApiModelProperty(value="大二型水库数",name="rsvrFour") private int rsvrFour; @ApiModelProperty(value="大一型水库数",name="rsvrFive") private int rsvrFive; @ApiModelProperty(value="问题总数",name="pblm") private int pblm; @ApiModelProperty(value="一般问题",name="pblmOne") private int pblmOne; @ApiModelProperty(value="较重问题",name="pblmTwo") private int pblmTwo; @ApiModelProperty(value="严重问题",name="pblmThree") private int pblmThree; @ApiModelProperty(value="特别严重问题",name="pblmFour") private int pblmFour; @ApiModelProperty(value="行政区划名称(app)",name="nm") private String nm; public int getRsvrThree() { return rsvrThree; } public void setRsvrThree(int rsvrThree) { this.rsvrThree = rsvrThree; } public int getRsvrFour() { return rsvrFour; } public void setRsvrFour(int rsvrFour) { this.rsvrFour = rsvrFour; } public int getRsvrFive() { return rsvrFive; } public void setRsvrFive(int rsvrFive) { this.rsvrFive = rsvrFive; } public int getPblmFour() { return pblmFour; } public void setPblmFour(int pblmFour) { this.pblmFour = pblmFour; } public String getNm() { return nm; } public void setNm(String nm) { this.nm = nm; } public RsvrWork() { } @Override public String toString() { return "BriefReport [" + "code=" + code + ", name=" + name+ ", group=" + group + ", pers=" + pers + ", pros=" + pros + ", country=" + country + ", rsvr=" + rsvr + ", rsvrOne=" + rsvrOne + ", rsvrTwo=" + rsvrTwo + ", pblm=" + pblm + "]"; } public String getAdCode() { return adCode; } public void setAdCode(String adCode) { this.adCode = adCode; } public String getAdName() { return adName; } public void setAdName(String adName) { this.adName = adName; } public String getCode() { return code; } public void setCode(String code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getGroup() { return group; } public void setGroup(int group) { this.group = group; } public int getPers() { return pers; } public void setPers(int pers) { this.pers = pers; } public int getPros() { return pros; } public void setPros(int pros) { this.pros = pros; } public int getCountry() { return country; } public void setCountry(int country) { this.country = country; } public int getRsvr() { return rsvr; } public void setRsvr(int rsvr) { this.rsvr = rsvr; } public int getRsvrOne() { return rsvrOne; } public void setRsvrOne(int rsvrOne) { this.rsvrOne = rsvrOne; } public int getRsvrTwo() { return rsvrTwo; } public void setRsvrTwo(int rsvrTwo) { this.rsvrTwo = rsvrTwo; } public int getPblm() { return pblm; } public void setPblm(int pblm) { this.pblm = pblm; } public int getPblmOne() { return pblmOne; } public void setPblmOne(int pblmOne) { this.pblmOne = pblmOne; } public int getPblmTwo() { return pblmTwo; } public void setPblmTwo(int pblmTwo) { this.pblmTwo = pblmTwo; } public int getPblmThree() { return pblmThree; } public void setPblmThree(int pblmThree) { this.pblmThree = pblmThree; } public String getTypeName() { return typeName; } public void setTypeName(String typeName) { this.typeName = typeName; } }