b3cc7c135bf2007a63fa90b56f47ff979fc4bcf3.svn-base 4.5 KB

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