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