87e6ae3cf103e07d215bcd13c39e583212bb9873.svn-base 5.8 KB

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