59278493b22d0586eb09e900d477f53b7d65dbf6.svn-base 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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:AttFjpjcsuBase
  9. *
  10. * @author lxf
  11. * @date 2023年12月19日
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class AttFjpjcsuBase 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. // 是否符合申请条件
  64. @ApiModelProperty(value="是否符合申请条件",name="isCnfm")
  65. private String isCnfm;
  66. public AttFjpjcsuBase() {
  67. }
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public String getName() {
  75. return name;
  76. }
  77. public void setName(String name) {
  78. this.name = name;
  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 getBusAddr() {
  93. return busAddr;
  94. }
  95. public void setBusAddr(String busAddr) {
  96. this.busAddr = busAddr;
  97. }
  98. public String getConPers() {
  99. return conPers;
  100. }
  101. public void setConPers(String conPers) {
  102. this.conPers = conPers;
  103. }
  104. public String getConPersTel() {
  105. return conPersTel;
  106. }
  107. public void setConPersTel(String conPersTel) {
  108. this.conPersTel = conPersTel;
  109. }
  110. public Double getCenterX() {
  111. return centerX;
  112. }
  113. public void setCenterX(Double centerX) {
  114. this.centerX = centerX;
  115. }
  116. public Double getCenterY() {
  117. return centerY;
  118. }
  119. public void setCenterY(Double centerY) {
  120. this.centerY = centerY;
  121. }
  122. public Double getGdX() {
  123. return gdX;
  124. }
  125. public void setGdX(Double gdX) {
  126. this.gdX = gdX;
  127. }
  128. public Double getGdY() {
  129. return gdY;
  130. }
  131. public void setGdY(Double gdY) {
  132. this.gdY = gdY;
  133. }
  134. public String getPersId() {
  135. return persId;
  136. }
  137. public void setPersId(String persId) {
  138. this.persId = persId;
  139. }
  140. public Date getIntm() {
  141. return intm;
  142. }
  143. public void setIntm(Date intm) {
  144. this.intm = intm;
  145. }
  146. public Date getUptm() {
  147. return uptm;
  148. }
  149. public void setUptm(Date uptm) {
  150. this.uptm = uptm;
  151. }
  152. public String getNote() {
  153. return note;
  154. }
  155. public void setNote(String note) {
  156. this.note = note;
  157. }
  158. public String getDataStat() {
  159. return dataStat;
  160. }
  161. public void setDataStat(String dataStat) {
  162. this.dataStat = dataStat;
  163. }
  164. public String getIsCnfm() {
  165. return isCnfm;
  166. }
  167. public void setIsCnfm(String isCnfm) {
  168. this.isCnfm = isCnfm;
  169. }
  170. @Override
  171. public String toString() {
  172. return "AttFjpjcsuBase [" + "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 + ", isCnfm=" + isCnfm + "]";
  173. }
  174. }