| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstr;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * Created by jinshui on 2020/3/10.
- */
- public class BisInspRsmlRgstrDto extends BisInspRsmlRgstr implements Serializable {
- @ApiModelProperty("督查名录code")
- private String code;
- @ApiModelProperty("督查组id")
- private String nodeId;
- @ApiModelProperty("编号")
- private String nm;
- @ApiModelProperty("督查组名称")
- private String groupName;
- @ApiModelProperty("省")
- private String province;
- @ApiModelProperty("市")
- private String city;
- @ApiModelProperty("县")
- private String country;
- @ApiModelProperty("督查对象类型")
- private String ptype;
- @ApiModelProperty("具体区域")
- private String adFullName;
- private String county;
- @ApiModelProperty("登记表id")
- private String rgstrId;
- @ApiModelProperty("流域名称")
- private String riverName;
- public String getRiverName() {
- return riverName;
- }
- public void setRiverName(String riverName) {
- this.riverName = riverName;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getNodeId() {
- return nodeId;
- }
- public void setNodeId(String nodeId) {
- this.nodeId = nodeId;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getGroupName() {
- return groupName;
- }
- public void setGroupName(String groupName) {
- this.groupName = groupName;
- }
- @Override
- public String getProvince() {
- return province;
- }
- @Override
- public void setProvince(String province) {
- this.province = province;
- }
- public String getCity() {
- return city;
- }
- public void setCity(String city) {
- this.city = city;
- }
- public String getCountry() {
- return country;
- }
- public void setCountry(String country) {
- this.country = country;
- }
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public String getAdFullName() {
- return adFullName;
- }
- public void setAdFullName(String adFullName) {
- this.adFullName = adFullName;
- }
- public String getCounty() {
- return county;
- }
- public void setCounty(String county) {
- this.county = county;
- }
- @Override
- public String getRgstrId() {
- return rgstrId;
- }
- @Override
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- }
|