5d455b525be3a05b4e63d6612127255e7006d985.svn-base 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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. * AttDstfldqhBaseParam
  9. *
  10. * @author lhc
  11. * @date 2021-6-10
  12. */
  13. public class AttDstfldqhBaseParam extends PageParam implements Serializable {
  14. // ID
  15. @ApiParam(name = "ID")
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 项目名称
  19. @ApiParam(name = "项目名称")
  20. @ApiModelProperty(value = "项目名称", name = "nm")
  21. private String nm;
  22. // 工程类型
  23. @ApiParam(name = "工程类型")
  24. @ApiModelProperty(value = "工程类型", name = "prjtType")
  25. private String prjtType;
  26. // 所在地行政区编码
  27. @ApiParam(name = "所在地行政区编码")
  28. @ApiModelProperty(value = "所在地行政区编码", name = "adCode")
  29. private String adCode;
  30. // 所在地行政区
  31. @ApiParam(name = "所在地行政区")
  32. @ApiModelProperty(value = "所在地行政区", name = "adName")
  33. private String adName;
  34. // 地址
  35. @ApiParam(name = "地址")
  36. @ApiModelProperty(value = "地址", name = "loc")
  37. private String loc;
  38. // 主管单位
  39. @ApiParam(name = "主管单位")
  40. @ApiModelProperty(value = "主管单位", name = "unit")
  41. private String unit;
  42. // 修复内容
  43. @ApiParam(name = "修复内容")
  44. @ApiModelProperty(value = "修复内容", name = "content")
  45. private String content;
  46. // 水毁情况
  47. @ApiParam(name = "水毁情况")
  48. @ApiModelProperty(value = "水毁情况", name = "note")
  49. private String note;
  50. // 经度
  51. @ApiParam(name = "经度")
  52. @ApiModelProperty(value = "经度", name = "centerX")
  53. private Double centerX;
  54. // 纬度
  55. @ApiParam(name = "纬度")
  56. @ApiModelProperty(value = "纬度", name = "centerY")
  57. private Double centerY;
  58. // 高德经度
  59. @ApiParam(name = "高德经度")
  60. @ApiModelProperty(value = "高德经度", name = "gdX")
  61. private Double gdX;
  62. // 高德纬度
  63. @ApiParam(name = "高德纬度")
  64. @ApiModelProperty(value = "高德纬度", name = "gdY")
  65. private Double gdY;
  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. // 数据状态(0:正常;9:删除)
  75. @ApiParam(name = "数据状态(0:正常;9:删除)")
  76. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  77. private String dataStat;
  78. public AttDstfldqhBaseParam() {
  79. }
  80. public String getId() {
  81. return id;
  82. }
  83. public void setId(String id) {
  84. this.id = id;
  85. }
  86. public String getNm() {
  87. return nm;
  88. }
  89. public void setNm(String nm) {
  90. this.nm = nm;
  91. }
  92. public String getPrjtType() {
  93. return prjtType;
  94. }
  95. public void setPrjtType(String prjtType) {
  96. this.prjtType = prjtType;
  97. }
  98. public String getAdCode() {
  99. return adCode;
  100. }
  101. public void setAdCode(String adCode) {
  102. this.adCode = adCode;
  103. }
  104. public String getAdName() {
  105. return adName;
  106. }
  107. public void setAdName(String adName) {
  108. this.adName = adName;
  109. }
  110. public String getLoc() {
  111. return loc;
  112. }
  113. public void setLoc(String loc) {
  114. this.loc = loc;
  115. }
  116. public String getUnit() {
  117. return unit;
  118. }
  119. public void setUnit(String unit) {
  120. this.unit = unit;
  121. }
  122. public String getContent() {
  123. return content;
  124. }
  125. public void setContent(String content) {
  126. this.content = content;
  127. }
  128. public String getNote() {
  129. return note;
  130. }
  131. public void setNote(String note) {
  132. this.note = note;
  133. }
  134. public Double getCenterX() {
  135. return centerX;
  136. }
  137. public void setCenterX(Double centerX) {
  138. this.centerX = centerX;
  139. }
  140. public Double getCenterY() {
  141. return centerY;
  142. }
  143. public void setCenterY(Double centerY) {
  144. this.centerY = centerY;
  145. }
  146. public Double getGdX() {
  147. return gdX;
  148. }
  149. public void setGdX(Double gdX) {
  150. this.gdX = gdX;
  151. }
  152. public Double getGdY() {
  153. return gdY;
  154. }
  155. public void setGdY(Double gdY) {
  156. this.gdY = gdY;
  157. }
  158. public Date getIntm() {
  159. return intm;
  160. }
  161. public void setIntm(Date intm) {
  162. this.intm = intm;
  163. }
  164. public Date getUptm() {
  165. return uptm;
  166. }
  167. public void setUptm(Date uptm) {
  168. this.uptm = uptm;
  169. }
  170. public String getDataStat() {
  171. return dataStat;
  172. }
  173. public void setDataStat(String dataStat) {
  174. this.dataStat = dataStat;
  175. }
  176. }