7c70c8b1e7b0ae063ee28e884a5adeccace134a9.svn-base 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:AttFjpjmgdpBase
  9. *
  10. * @author lhc
  11. * @date 2023-11-8
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class AttFjpjmgdpBase extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 水利工程管理单位名称
  19. @ApiModelProperty(value = "水利工程管理单位名称", name = "name")
  20. private String name;
  21. // 行政区划编码
  22. @ApiModelProperty(value = "行政区划编码", name = "adCode")
  23. private String adCode;
  24. // 行政区划
  25. @ApiModelProperty(value = "行政区划", name = "adName")
  26. private String adName;
  27. // 地址
  28. @ApiModelProperty(value = "地址", name = "busAddr")
  29. private String busAddr;
  30. // 联系人
  31. @ApiModelProperty(value = "联系人", name = "conPers")
  32. private String conPers;
  33. // 联系人电话
  34. @ApiModelProperty(value = "联系人电话", name = "conPersTel")
  35. private String conPersTel;
  36. // 经度
  37. @ApiModelProperty(value = "经度", name = "centerX")
  38. private Double centerX;
  39. // 纬度
  40. @ApiModelProperty(value = "纬度", name = "centerY")
  41. private Double centerY;
  42. // 高德经度
  43. @ApiModelProperty(value = "高德经度", name = "gdX")
  44. private Double gdX;
  45. // 高德纬度
  46. @ApiModelProperty(value = "高德纬度", name = "gdY")
  47. private Double gdY;
  48. // 记录人员ID
  49. @ApiModelProperty(value = "记录人员ID", name = "persId")
  50. private String persId;
  51. // 创建时间
  52. @ApiModelProperty(value = "创建时间", name = "intm")
  53. private Date intm;
  54. // 最后修改时间
  55. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  56. private Date uptm;
  57. // 备注
  58. @ApiModelProperty(value = "备注", name = "note")
  59. private String note;
  60. // 数据状态
  61. @ApiModelProperty(value = "数据状态", name = "dataStat")
  62. private String dataStat;
  63. @ApiModelProperty(value = "是否符合申请条件 1 符合 2 不符合", name = "state")
  64. private String isCnfm;
  65. public String getIsCnfm() {
  66. return isCnfm;
  67. }
  68. public void setIsCnfm(String isCnfm) {
  69. this.isCnfm = isCnfm;
  70. }
  71. public AttFjpjmgdpBase() {
  72. }
  73. public String getId() {
  74. return id;
  75. }
  76. public void setId(String id) {
  77. this.id = id;
  78. }
  79. public String getName() {
  80. return name;
  81. }
  82. public void setName(String name) {
  83. this.name = name;
  84. }
  85. public String getAdCode() {
  86. return adCode;
  87. }
  88. public void setAdCode(String adCode) {
  89. this.adCode = adCode;
  90. }
  91. public String getAdName() {
  92. return adName;
  93. }
  94. public void setAdName(String adName) {
  95. this.adName = adName;
  96. }
  97. public String getBusAddr() {
  98. return busAddr;
  99. }
  100. public void setBusAddr(String busAddr) {
  101. this.busAddr = busAddr;
  102. }
  103. public String getConPers() {
  104. return conPers;
  105. }
  106. public void setConPers(String conPers) {
  107. this.conPers = conPers;
  108. }
  109. public String getConPersTel() {
  110. return conPersTel;
  111. }
  112. public void setConPersTel(String conPersTel) {
  113. this.conPersTel = conPersTel;
  114. }
  115. public Double getCenterX() {
  116. return centerX;
  117. }
  118. public void setCenterX(Double centerX) {
  119. this.centerX = centerX;
  120. }
  121. public Double getCenterY() {
  122. return centerY;
  123. }
  124. public void setCenterY(Double centerY) {
  125. this.centerY = centerY;
  126. }
  127. public Double getGdX() {
  128. return gdX;
  129. }
  130. public void setGdX(Double gdX) {
  131. this.gdX = gdX;
  132. }
  133. public Double getGdY() {
  134. return gdY;
  135. }
  136. public void setGdY(Double gdY) {
  137. this.gdY = gdY;
  138. }
  139. public String getPersId() {
  140. return persId;
  141. }
  142. public void setPersId(String persId) {
  143. this.persId = persId;
  144. }
  145. public Date getIntm() {
  146. return intm;
  147. }
  148. public void setIntm(Date intm) {
  149. this.intm = intm;
  150. }
  151. public Date getUptm() {
  152. return uptm;
  153. }
  154. public void setUptm(Date uptm) {
  155. this.uptm = uptm;
  156. }
  157. public String getNote() {
  158. return note;
  159. }
  160. public void setNote(String note) {
  161. this.note = note;
  162. }
  163. public String getDataStat() {
  164. return dataStat;
  165. }
  166. public void setDataStat(String dataStat) {
  167. this.dataStat = dataStat;
  168. }
  169. @Override
  170. public String toString() {
  171. return "AttFjpjmgdpBase [" + "id=" + id + ", name=" + name + ", adCode=" + adCode + ", adName=" + adName + ", busAddr=" + busAddr + ", conPers=" + conPers + ", conPersTel=" + conPersTel + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
  172. }
  173. }