e32ea6c60bf9be0a6636abad41eae50ffb8dad32.svn-base 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspBaseNew
  9. *
  10. * @author lql
  11. * @date 2026-1-12
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspBaseNew extends BaseBean implements Serializable {
  15. // 对象ID
  16. @ApiModelProperty(value = "对象ID", name = "id")
  17. private String id;
  18. // 督查对象类型
  19. @ApiModelProperty(value = "督查对象类型", name = "objType")
  20. private String objType;
  21. // 督察对象编码
  22. @ApiModelProperty(value = "督察对象编码", name = "code")
  23. private String code;
  24. // 督查对象名称
  25. @ApiModelProperty(value = "督查对象名称", name = "nm")
  26. private String nm;
  27. // 所在地行政区编码
  28. @ApiModelProperty(value = "所在地行政区编码", name = "adCode")
  29. private String adCode;
  30. // 所在地行政区
  31. @ApiModelProperty(value = "所在地行政区", name = "adName")
  32. private String adName;
  33. // 地址
  34. @ApiModelProperty(value = "地址", name = "loc")
  35. private String loc;
  36. // 督查对象备注
  37. @ApiModelProperty(value = "督查对象备注", name = "note")
  38. private String note;
  39. // 经度
  40. @ApiModelProperty(value = "经度", name = "centerX")
  41. private Double centerX;
  42. // 纬度
  43. @ApiModelProperty(value = "纬度", name = "centerY")
  44. private Double centerY;
  45. // 高德经度
  46. @ApiModelProperty(value = "高德经度", name = "gdX")
  47. private Double gdX;
  48. // 高德纬度
  49. @ApiModelProperty(value = "高德纬度", name = "gdY")
  50. private Double gdY;
  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 = "dataStat")
  59. private String dataStat;
  60. // 督查对象标段
  61. @ApiModelProperty(value = "督查对象标段", name = "sectName")
  62. private String sectName;
  63. public BisInspBaseNew() {
  64. }
  65. public String getId() {
  66. return id;
  67. }
  68. public void setId(String id) {
  69. this.id = id;
  70. }
  71. public String getObjType() {
  72. return objType;
  73. }
  74. public void setObjType(String objType) {
  75. this.objType = objType;
  76. }
  77. public String getCode() {
  78. return code;
  79. }
  80. public void setCode(String code) {
  81. this.code = code;
  82. }
  83. public String getNm() {
  84. return nm;
  85. }
  86. public void setNm(String nm) {
  87. this.nm = nm;
  88. }
  89. public String getAdCode() {
  90. return adCode;
  91. }
  92. public void setAdCode(String adCode) {
  93. this.adCode = adCode;
  94. }
  95. public String getAdName() {
  96. return adName;
  97. }
  98. public void setAdName(String adName) {
  99. this.adName = adName;
  100. }
  101. public String getLoc() {
  102. return loc;
  103. }
  104. public void setLoc(String loc) {
  105. this.loc = loc;
  106. }
  107. public String getNote() {
  108. return note;
  109. }
  110. public void setNote(String note) {
  111. this.note = note;
  112. }
  113. public Double getCenterX() {
  114. return centerX;
  115. }
  116. public void setCenterX(Double centerX) {
  117. this.centerX = centerX;
  118. }
  119. public Double getCenterY() {
  120. return centerY;
  121. }
  122. public void setCenterY(Double centerY) {
  123. this.centerY = centerY;
  124. }
  125. public Double getGdX() {
  126. return gdX;
  127. }
  128. public void setGdX(Double gdX) {
  129. this.gdX = gdX;
  130. }
  131. public Double getGdY() {
  132. return gdY;
  133. }
  134. public void setGdY(Double gdY) {
  135. this.gdY = gdY;
  136. }
  137. public Date getIntm() {
  138. return intm;
  139. }
  140. public void setIntm(Date intm) {
  141. this.intm = intm;
  142. }
  143. public Date getUptm() {
  144. return uptm;
  145. }
  146. public void setUptm(Date uptm) {
  147. this.uptm = uptm;
  148. }
  149. public String getDataStat() {
  150. return dataStat;
  151. }
  152. public void setDataStat(String dataStat) {
  153. this.dataStat = dataStat;
  154. }
  155. public String getSectName() {
  156. return sectName;
  157. }
  158. public void setSectName(String sectName) {
  159. this.sectName = sectName;
  160. }
  161. @Override
  162. public String toString() {
  163. return "BisInspBaseNew [" + "id=" + id + ", objType=" + objType + ", code=" + code + ", nm=" + nm + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", note=" + note + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", sectName=" + sectName + "]";
  164. }
  165. }