package cn.com.goldenwater.dcproj.model; import io.swagger.annotations.ApiModelProperty; /** * Created by 61618 on 2019/5/24. */ public class WagaWork { @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 = "waga") private int waga; @ApiModelProperty(value = "大型水闸数", name = "wagaOne") private int wagaOne; @ApiModelProperty(value = "中型水闸数", name = "wagaTwo") private int wagaTwo; @ApiModelProperty(value = "小型水闸数", name = "wagaThree") private int wagaThree; @ApiModelProperty(value = "其他水闸数", name = "wagaFour") private int wagaFour; @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 String getTypeName() { return typeName; } public void setTypeName(String typeName) { this.typeName = typeName; } 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 getWaga() { return waga; } public void setWaga(int waga) { this.waga = waga; } public int getWagaOne() { return wagaOne; } public void setWagaOne(int wagaOne) { this.wagaOne = wagaOne; } public int getWagaTwo() { return wagaTwo; } public void setWagaTwo(int wagaTwo) { this.wagaTwo = wagaTwo; } public int getWagaThree() { return wagaThree; } public void setWagaThree(int wagaThree) { this.wagaThree = wagaThree; } 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 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 int getWagaFour() { return wagaFour; } public void setWagaFour(int wagaFour) { this.wagaFour = wagaFour; } @Override public String toString() { return "WagaWork{" + "typeName='" + typeName + '\'' + ", adCode='" + adCode + '\'' + ", adName='" + adName + '\'' + ", code='" + code + '\'' + ", name='" + name + '\'' + ", group=" + group + ", pers=" + pers + ", pros=" + pros + ", country=" + country + ", waga=" + waga + ", wagaOne=" + wagaOne + ", wagaTwo=" + wagaTwo + ", wagaThree=" + wagaThree + ", wagaFour=" + wagaFour + ", pblm=" + pblm + ", pblmOne=" + pblmOne + ", pblmTwo=" + pblmTwo + ", pblmThree=" + pblmThree + ", pblmFour=" + pblmFour + ", nm='" + nm + '\'' + '}'; } }