35b62b33e3702b5043e1f2b209e702c7f917a397.svn-base 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  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 = "engrType")
  23. private String engrType;
  24. // 督察对象编码
  25. @ApiModelProperty(value = "督察对象编码", name = "code")
  26. private String code;
  27. // 督查对象名称
  28. @ApiModelProperty(value = "督查对象名称", name = "nm")
  29. private String nm;
  30. // 所在地行政区编码
  31. @ApiModelProperty(value = "所在地行政区编码", name = "adCode")
  32. private String adCode;
  33. // 所在地行政区
  34. @ApiModelProperty(value = "所在地行政区", name = "adName")
  35. private String adName;
  36. // 地址
  37. @ApiModelProperty(value = "地址", name = "loc")
  38. private String loc;
  39. // 督查对象备注
  40. @ApiModelProperty(value = "督查对象备注", name = "note")
  41. private String note;
  42. // 经度
  43. @ApiModelProperty(value = "经度", name = "centerX")
  44. private Double centerX;
  45. // 纬度
  46. @ApiModelProperty(value = "纬度", name = "centerY")
  47. private Double centerY;
  48. // 高德经度
  49. @ApiModelProperty(value = "高德经度", name = "gdX")
  50. private Double gdX;
  51. // 高德纬度
  52. @ApiModelProperty(value = "高德纬度", name = "gdY")
  53. private Double gdY;
  54. // 创建时间
  55. @ApiModelProperty(value = "创建时间", name = "intm")
  56. private Date intm;
  57. // 修改时间
  58. @ApiModelProperty(value = "修改时间", name = "uptm")
  59. private Date uptm;
  60. // 数据状态
  61. @ApiModelProperty(value = "数据状态", name = "dataStat")
  62. private String dataStat;
  63. // 督查对象标段
  64. @ApiModelProperty(value = "督查对象标段", name = "sectName")
  65. private String sectName;
  66. public BisInspBaseNew() {
  67. }
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public String getObjType() {
  75. return objType;
  76. }
  77. public void setObjType(String objType) {
  78. this.objType = objType;
  79. }
  80. public String getEngrType() {
  81. return engrType;
  82. }
  83. public void setEngrType(String engrType) {
  84. this.engrType = engrType;
  85. }
  86. public String getCode() {
  87. return code;
  88. }
  89. public void setCode(String code) {
  90. this.code = code;
  91. }
  92. public String getNm() {
  93. return nm;
  94. }
  95. public void setNm(String nm) {
  96. this.nm = nm;
  97. }
  98. public String getAdCode() {
  99. return adCode;
  100. }
  101. public void setAdCode(String adCode) {
  102. this.adCode = adCode;
  103. }
  104. public String getAdName() {
  105. return adName;
  106. }
  107. public void setAdName(String adName) {
  108. this.adName = adName;
  109. }
  110. public String getLoc() {
  111. return loc;
  112. }
  113. public void setLoc(String loc) {
  114. this.loc = loc;
  115. }
  116. public String getNote() {
  117. return note;
  118. }
  119. public void setNote(String note) {
  120. this.note = note;
  121. }
  122. public Double getCenterX() {
  123. return centerX;
  124. }
  125. public void setCenterX(Double centerX) {
  126. this.centerX = centerX;
  127. }
  128. public Double getCenterY() {
  129. return centerY;
  130. }
  131. public void setCenterY(Double centerY) {
  132. this.centerY = centerY;
  133. }
  134. public Double getGdX() {
  135. return gdX;
  136. }
  137. public void setGdX(Double gdX) {
  138. this.gdX = gdX;
  139. }
  140. public Double getGdY() {
  141. return gdY;
  142. }
  143. public void setGdY(Double gdY) {
  144. this.gdY = gdY;
  145. }
  146. public Date getIntm() {
  147. return intm;
  148. }
  149. public void setIntm(Date intm) {
  150. this.intm = intm;
  151. }
  152. public Date getUptm() {
  153. return uptm;
  154. }
  155. public void setUptm(Date uptm) {
  156. this.uptm = uptm;
  157. }
  158. public String getDataStat() {
  159. return dataStat;
  160. }
  161. public void setDataStat(String dataStat) {
  162. this.dataStat = dataStat;
  163. }
  164. public String getSectName() {
  165. return sectName;
  166. }
  167. public void setSectName(String sectName) {
  168. this.sectName = sectName;
  169. }
  170. @Override
  171. public String toString() {
  172. 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 + "]";
  173. }
  174. }