| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- package cn.com.goldenwater.dcproj.model;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * Created by 61618 on 2019/5/24.
- */
- public class EmpwtConWork {
- @ApiModelProperty(value = "督查类型", name = "typeName")
- private String typeName = "172重点工程建设";
- @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 empwt;
- @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 getEmpwt() {
- return empwt;
- }
- public void setEmpwt(int empwt) {
- this.empwt = empwt;
- }
- 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;
- }
- @Override
- public String toString() {
- return "EmpwtConWork{" +
- "typeName='" + typeName + '\'' +
- ", adCode='" + adCode + '\'' +
- ", adName='" + adName + '\'' +
- ", code='" + code + '\'' +
- ", name='" + name + '\'' +
- ", group=" + group +
- ", pers=" + pers +
- ", pros=" + pros +
- ", country=" + country +
- ", empwt=" + empwt +
- ", pblm=" + pblm +
- ", pblmOne=" + pblmOne +
- ", pblmTwo=" + pblmTwo +
- ", pblmThree=" + pblmThree +
- ", pblmFour=" + pblmFour +
- ", nm='" + nm + '\'' +
- '}';
- }
- }
|