| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- 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 + '\'' +
- '}';
- }
- }
|