36db3a659533faa6196ac8e97e7a8c73c34b2c4f.svn-base 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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. * AttJskejianFlkdisBaseParam
  9. *
  10. * @author lune
  11. * @date 2019-12-13
  12. */
  13. public class AttJskejianFlkdisBaseParam extends PageParam implements Serializable {
  14. @ApiModelProperty("主键ID")
  15. private String id;
  16. @ApiModelProperty("项目名称")
  17. private String name;
  18. @ApiModelProperty("河流、河段(湖泊)名称")
  19. private String rvReaLkName;
  20. @ApiModelProperty("行政区编码")
  21. private String adCode;
  22. @ApiModelProperty("行政区名称")
  23. private String adName;
  24. @ApiModelProperty("所在详细位置")
  25. private String location;
  26. @ApiModelProperty("PC经度")
  27. private Double centerX;
  28. @ApiModelProperty("PC纬度")
  29. private Double centerY;
  30. @ApiModelProperty("高德经度")
  31. private Double gdX;
  32. @ApiModelProperty("高德纬度")
  33. private Double gdY;
  34. @ApiModelProperty("县级河长姓名及职务")
  35. private String contRvonNameDuty;
  36. @ApiModelProperty("乡级县级河长姓名及职务")
  37. private String townRvonNameDuty;
  38. @ApiModelProperty("村级县级河长姓名及职务")
  39. private String vilgRvonNameDuty;
  40. @ApiModelProperty("问题类型(1:乱占;2:乱采;3:乱堆;4:乱建;5:其他)")
  41. private String pblmType;
  42. @ApiModelProperty("问题描述")
  43. private String pblmDesc;
  44. @ApiModelProperty("问题整治情况(上报;1:已销号;2:未销号)")
  45. private String rectConc;
  46. @ApiModelProperty("创建人")
  47. private String persId;
  48. @ApiModelProperty("创建时间")
  49. private Date intm;
  50. @ApiModelProperty("修改时间")
  51. private Date uptm;
  52. @ApiModelProperty("状态")
  53. private String state;
  54. public AttJskejianFlkdisBaseParam() {
  55. }
  56. public String getState() {
  57. return state;
  58. }
  59. public void setState(String state) {
  60. this.state = state;
  61. }
  62. public String getId() {
  63. return id;
  64. }
  65. public void setId(String id) {
  66. this.id = id;
  67. }
  68. public String getName() {
  69. return name;
  70. }
  71. public void setName(String name) {
  72. this.name = name;
  73. }
  74. public String getRvReaLkName() {
  75. return rvReaLkName;
  76. }
  77. public void setRvReaLkName(String rvReaLkName) {
  78. this.rvReaLkName = rvReaLkName;
  79. }
  80. public String getAdCode() {
  81. return adCode;
  82. }
  83. public void setAdCode(String adCode) {
  84. this.adCode = adCode;
  85. }
  86. public String getAdName() {
  87. return adName;
  88. }
  89. public void setAdName(String adName) {
  90. this.adName = adName;
  91. }
  92. public String getLocation() {
  93. return location;
  94. }
  95. public void setLocation(String location) {
  96. this.location = location;
  97. }
  98. public Double getCenterX() {
  99. return centerX;
  100. }
  101. public void setCenterX(Double centerX) {
  102. this.centerX = centerX;
  103. }
  104. public Double getCenterY() {
  105. return centerY;
  106. }
  107. public void setCenterY(Double centerY) {
  108. this.centerY = centerY;
  109. }
  110. public Double getGdX() {
  111. return gdX;
  112. }
  113. public void setGdX(Double gdX) {
  114. this.gdX = gdX;
  115. }
  116. public Double getGdY() {
  117. return gdY;
  118. }
  119. public void setGdY(Double gdY) {
  120. this.gdY = gdY;
  121. }
  122. public String getContRvonNameDuty() {
  123. return contRvonNameDuty;
  124. }
  125. public void setContRvonNameDuty(String contRvonNameDuty) {
  126. this.contRvonNameDuty = contRvonNameDuty;
  127. }
  128. public String getTownRvonNameDuty() {
  129. return townRvonNameDuty;
  130. }
  131. public void setTownRvonNameDuty(String townRvonNameDuty) {
  132. this.townRvonNameDuty = townRvonNameDuty;
  133. }
  134. public String getVilgRvonNameDuty() {
  135. return vilgRvonNameDuty;
  136. }
  137. public void setVilgRvonNameDuty(String vilgRvonNameDuty) {
  138. this.vilgRvonNameDuty = vilgRvonNameDuty;
  139. }
  140. public String getPblmType() {
  141. return pblmType;
  142. }
  143. public void setPblmType(String pblmType) {
  144. this.pblmType = pblmType;
  145. }
  146. public String getPblmDesc() {
  147. return pblmDesc;
  148. }
  149. public void setPblmDesc(String pblmDesc) {
  150. this.pblmDesc = pblmDesc;
  151. }
  152. public String getRectConc() {
  153. return rectConc;
  154. }
  155. public void setRectConc(String rectConc) {
  156. this.rectConc = rectConc;
  157. }
  158. public String getPersId() {
  159. return persId;
  160. }
  161. public void setPersId(String persId) {
  162. this.persId = persId;
  163. }
  164. public Date getIntm() {
  165. return intm;
  166. }
  167. public void setIntm(Date intm) {
  168. this.intm = intm;
  169. }
  170. public Date getUptm() {
  171. return uptm;
  172. }
  173. public void setUptm(Date uptm) {
  174. this.uptm = uptm;
  175. }
  176. }