2a8582ae61347e18378f1c3d626c635d2c38e497.svn-base 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.dcproj.model.BisInspRsmlRgstr;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. /**
  6. * Created by jinshui on 2020/3/10.
  7. */
  8. public class BisInspRsmlRgstrDto extends BisInspRsmlRgstr implements Serializable {
  9. @ApiModelProperty("督查名录code")
  10. private String code;
  11. @ApiModelProperty("督查组id")
  12. private String nodeId;
  13. @ApiModelProperty("编号")
  14. private String nm;
  15. @ApiModelProperty("督查组名称")
  16. private String groupName;
  17. @ApiModelProperty("省")
  18. private String province;
  19. @ApiModelProperty("市")
  20. private String city;
  21. @ApiModelProperty("县")
  22. private String country;
  23. @ApiModelProperty("督查对象类型")
  24. private String ptype;
  25. @ApiModelProperty("具体区域")
  26. private String adFullName;
  27. private String county;
  28. @ApiModelProperty("登记表id")
  29. private String rgstrId;
  30. @ApiModelProperty("流域名称")
  31. private String riverName;
  32. public String getRiverName() {
  33. return riverName;
  34. }
  35. public void setRiverName(String riverName) {
  36. this.riverName = riverName;
  37. }
  38. public String getCode() {
  39. return code;
  40. }
  41. public void setCode(String code) {
  42. this.code = code;
  43. }
  44. public String getNodeId() {
  45. return nodeId;
  46. }
  47. public void setNodeId(String nodeId) {
  48. this.nodeId = nodeId;
  49. }
  50. public String getNm() {
  51. return nm;
  52. }
  53. public void setNm(String nm) {
  54. this.nm = nm;
  55. }
  56. public String getGroupName() {
  57. return groupName;
  58. }
  59. public void setGroupName(String groupName) {
  60. this.groupName = groupName;
  61. }
  62. @Override
  63. public String getProvince() {
  64. return province;
  65. }
  66. @Override
  67. public void setProvince(String province) {
  68. this.province = province;
  69. }
  70. public String getCity() {
  71. return city;
  72. }
  73. public void setCity(String city) {
  74. this.city = city;
  75. }
  76. public String getCountry() {
  77. return country;
  78. }
  79. public void setCountry(String country) {
  80. this.country = country;
  81. }
  82. public String getPtype() {
  83. return ptype;
  84. }
  85. public void setPtype(String ptype) {
  86. this.ptype = ptype;
  87. }
  88. public String getAdFullName() {
  89. return adFullName;
  90. }
  91. public void setAdFullName(String adFullName) {
  92. this.adFullName = adFullName;
  93. }
  94. public String getCounty() {
  95. return county;
  96. }
  97. public void setCounty(String county) {
  98. this.county = county;
  99. }
  100. @Override
  101. public String getRgstrId() {
  102. return rgstrId;
  103. }
  104. @Override
  105. public void setRgstrId(String rgstrId) {
  106. this.rgstrId = rgstrId;
  107. }
  108. }