44715c01c4963e1d2f46c6b4efacce0126ccc009.svn-base 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * BisInspMfdpRgstrObjParam
  8. *
  9. * @author lune
  10. * @date 2020-4-26
  11. */
  12. public class BisInspMfdpRgstrObjParam extends PageParam implements Serializable {
  13. @ApiModelProperty("主键ID")
  14. private String id;
  15. @ApiModelProperty("水库督查登记ID")
  16. private String rgstrId;
  17. @ApiModelProperty("暗访调研对象类型(1:监测站点;2:接收端;3:乡镇;4:行政村)")
  18. private String inspObjType;
  19. @ApiModelProperty("暗访调研对象名称")
  20. private String inspObjName;
  21. @ApiModelProperty("行政区编码(登记表同步)")
  22. private String adCode;
  23. @ApiModelProperty("行政区划名称(登记表同步)")
  24. private String adName;
  25. @ApiModelProperty("详细地址")
  26. private String location;
  27. @ApiModelProperty("填报状态(0:未填报;1:填报中;2:已填报)")
  28. private String status;
  29. @ApiModelProperty("记录人员ID")
  30. private String recPersId;
  31. @ApiModelProperty("记录人员")
  32. private String recPers;
  33. @ApiModelProperty("记录人员电话")
  34. private String recPersTel;
  35. @ApiModelProperty("创建时间")
  36. private Date intm;
  37. @ApiModelProperty("修改时间")
  38. private Date uptm;
  39. public BisInspMfdpRgstrObjParam() {
  40. }
  41. public String getId() {
  42. return id;
  43. }
  44. public void setId(String id) {
  45. this.id = id;
  46. }
  47. public String getRgstrId() {
  48. return rgstrId;
  49. }
  50. public void setRgstrId(String rgstrId) {
  51. this.rgstrId = rgstrId;
  52. }
  53. public String getInspObjType() {
  54. return inspObjType;
  55. }
  56. public void setInspObjType(String inspObjType) {
  57. this.inspObjType = inspObjType;
  58. }
  59. public String getInspObjName() {
  60. return inspObjName;
  61. }
  62. public void setInspObjName(String inspObjName) {
  63. this.inspObjName = inspObjName;
  64. }
  65. public String getAdCode() {
  66. return adCode;
  67. }
  68. public void setAdCode(String adCode) {
  69. this.adCode = adCode;
  70. }
  71. public String getAdName() {
  72. return adName;
  73. }
  74. public void setAdName(String adName) {
  75. this.adName = adName;
  76. }
  77. public String getLocation() {
  78. return location;
  79. }
  80. public void setLocation(String location) {
  81. this.location = location;
  82. }
  83. public String getStatus() {
  84. return status;
  85. }
  86. public void setStatus(String status) {
  87. this.status = status;
  88. }
  89. public String getRecPersId() {
  90. return recPersId;
  91. }
  92. public void setRecPersId(String recPersId) {
  93. this.recPersId = recPersId;
  94. }
  95. public String getRecPers() {
  96. return recPers;
  97. }
  98. public void setRecPers(String recPers) {
  99. this.recPers = recPers;
  100. }
  101. public String getRecPersTel() {
  102. return recPersTel;
  103. }
  104. public void setRecPersTel(String recPersTel) {
  105. this.recPersTel = recPersTel;
  106. }
  107. public Date getIntm() {
  108. return intm;
  109. }
  110. public void setIntm(Date intm) {
  111. this.intm = intm;
  112. }
  113. public Date getUptm() {
  114. return uptm;
  115. }
  116. public void setUptm(Date uptm) {
  117. this.uptm = uptm;
  118. }
  119. }