e1a315ea2f30afc9a4065a97d9787051814ecf79.svn-base 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. package cn.com.goldenwater.dcproj.param;
  2. import cn.com.goldenwater.core.param.PageParam;
  3. import io.swagger.annotations.ApiParam;
  4. import java.util.Date;
  5. import java.io.Serializable;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * BisInspRsraqgRgstrParam
  9. *
  10. * @author lhc
  11. * @date 2020-3-17
  12. */
  13. public class BisInspRsraqgRgstrParam extends PageParam implements Serializable {
  14. // 主键id
  15. @ApiParam(name = "主键id")
  16. @ApiModelProperty(value = "主键id", name = "id")
  17. private String id;
  18. // 督查对象ID
  19. @ApiParam(name = "督查对象ID")
  20. @ApiModelProperty(value = "督查对象ID", name = "objId")
  21. private String objId;
  22. // 行政区划全称
  23. @ApiParam(name = "行政区划全称")
  24. @ApiModelProperty(value = "行政区划全称", name = "adName")
  25. private String adName;
  26. // 行政区编码
  27. @ApiParam(name = "行政区编码")
  28. @ApiModelProperty(value = "行政区编码", name = "adCode")
  29. private String adCode;
  30. // 详细地址
  31. @ApiParam(name = "详细地址")
  32. @ApiModelProperty(value = "详细地址", name = "loc")
  33. private String loc;
  34. // 经度
  35. @ApiParam(name = "经度")
  36. @ApiModelProperty(value = "经度", name = "pcX")
  37. private Double pcX;
  38. // 纬度
  39. @ApiParam(name = "纬度")
  40. @ApiModelProperty(value = "纬度", name = "pcY")
  41. private Double pcY;
  42. // 高德经度
  43. @ApiParam(name = "高德经度")
  44. @ApiModelProperty(value = "高德经度", name = "gdX")
  45. private Double gdX;
  46. // 高德纬度
  47. @ApiParam(name = "高德纬度")
  48. @ApiModelProperty(value = "高德纬度", name = "gdY")
  49. private Double gdY;
  50. // 备注
  51. @ApiParam(name = "备注")
  52. @ApiModelProperty(value = "备注", name = "note")
  53. private String note;
  54. // 督查状态(0:未督查;1:督查中;2:已督查)
  55. @ApiParam(name = "督查状态(0:未督查;1:督查中;2:已督查)")
  56. @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", name = "state")
  57. private String state;
  58. // 创建人
  59. @ApiParam(name = "创建人")
  60. @ApiModelProperty(value = "创建人", name = "persId")
  61. private String persId;
  62. // 督查组ID
  63. @ApiParam(name = "督查组ID")
  64. @ApiModelProperty(value = "督查组ID", name = "groupId")
  65. private String groupId;
  66. // 创建时间
  67. @ApiParam(name = "创建时间")
  68. @ApiModelProperty(value = "创建时间", name = "intm")
  69. private Date intm;
  70. // 更新时间
  71. @ApiParam(name = "更新时间")
  72. @ApiModelProperty(value = "更新时间", name = "uptm")
  73. private Date uptm;
  74. public BisInspRsraqgRgstrParam() {
  75. }
  76. public String getId() {
  77. return id;
  78. }
  79. public void setId(String id) {
  80. this.id = id;
  81. }
  82. public String getObjId() {
  83. return objId;
  84. }
  85. public void setObjId(String objId) {
  86. this.objId = objId;
  87. }
  88. public String getAdName() {
  89. return adName;
  90. }
  91. public void setAdName(String adName) {
  92. this.adName = adName;
  93. }
  94. public String getAdCode() {
  95. return adCode;
  96. }
  97. public void setAdCode(String adCode) {
  98. this.adCode = adCode;
  99. }
  100. public String getLoc() {
  101. return loc;
  102. }
  103. public void setLoc(String loc) {
  104. this.loc = loc;
  105. }
  106. public Double getPcX() {
  107. return pcX;
  108. }
  109. public void setPcX(Double pcX) {
  110. this.pcX = pcX;
  111. }
  112. public Double getPcY() {
  113. return pcY;
  114. }
  115. public void setPcY(Double pcY) {
  116. this.pcY = pcY;
  117. }
  118. public Double getGdX() {
  119. return gdX;
  120. }
  121. public void setGdX(Double gdX) {
  122. this.gdX = gdX;
  123. }
  124. public Double getGdY() {
  125. return gdY;
  126. }
  127. public void setGdY(Double gdY) {
  128. this.gdY = gdY;
  129. }
  130. public String getNote() {
  131. return note;
  132. }
  133. public void setNote(String note) {
  134. this.note = note;
  135. }
  136. public String getState() {
  137. return state;
  138. }
  139. public void setState(String state) {
  140. this.state = state;
  141. }
  142. public String getPersId() {
  143. return persId;
  144. }
  145. public void setPersId(String persId) {
  146. this.persId = persId;
  147. }
  148. public String getGroupId() {
  149. return groupId;
  150. }
  151. public void setGroupId(String groupId) {
  152. this.groupId = groupId;
  153. }
  154. public Date getIntm() {
  155. return intm;
  156. }
  157. public void setIntm(Date intm) {
  158. this.intm = intm;
  159. }
  160. public Date getUptm() {
  161. return uptm;
  162. }
  163. public void setUptm(Date uptm) {
  164. this.uptm = uptm;
  165. }
  166. }