8efd85f76c19167439da45c2f12a1f6ee42b6e00.svn-base 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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:BisInspGenrlRgstr
  9. *
  10. * @author lql
  11. * @date 2026-1-12
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspGenrlRgstr extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value = "ID", name = "id")
  17. private String id;
  18. // 督查对象ID
  19. @ApiModelProperty(value = "督查对象ID", name = "objId")
  20. private String objId;
  21. // 督查对象类型
  22. @ApiModelProperty(value = "督查对象类型", name = "objType")
  23. private String objType;
  24. // 工程类型
  25. @ApiModelProperty(value = "工程类型", name = "engrType")
  26. private String engrType;
  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 = "state")
  44. private String state;
  45. // 经度
  46. @ApiModelProperty(value = "经度", name = "centerX")
  47. private Double centerX;
  48. // 纬度
  49. @ApiModelProperty(value = "纬度", name = "centerY")
  50. private Double centerY;
  51. // 高德经度
  52. @ApiModelProperty(value = "高德经度", name = "gdX")
  53. private Double gdX;
  54. // 高德纬度
  55. @ApiModelProperty(value = "高德纬度", name = "gdY")
  56. private Double gdY;
  57. // 创建时间
  58. @ApiModelProperty(value = "创建时间", name = "intm")
  59. private Date intm;
  60. // 修改时间
  61. @ApiModelProperty(value = "修改时间", name = "uptm")
  62. private Date uptm;
  63. // 数据状态
  64. @ApiModelProperty(value = "数据状态", name = "dataStat")
  65. private String dataStat;
  66. public BisInspGenrlRgstr() {
  67. }
  68. public String getId() {
  69. return id;
  70. }
  71. public void setId(String id) {
  72. this.id = id;
  73. }
  74. public String getObjId() {
  75. return objId;
  76. }
  77. public void setObjId(String objId) {
  78. this.objId = objId;
  79. }
  80. public String getEngrType() {
  81. return engrType;
  82. }
  83. public void setEngrType(String engrType) {
  84. this.engrType = engrType;
  85. }
  86. public String getObjType() {
  87. return objType;
  88. }
  89. public void setObjType(String objType) {
  90. this.objType = objType;
  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 String getState() {
  123. return state;
  124. }
  125. public void setState(String state) {
  126. this.state = state;
  127. }
  128. public Double getCenterX() {
  129. return centerX;
  130. }
  131. public void setCenterX(Double centerX) {
  132. this.centerX = centerX;
  133. }
  134. public Double getCenterY() {
  135. return centerY;
  136. }
  137. public void setCenterY(Double centerY) {
  138. this.centerY = centerY;
  139. }
  140. public Double getGdX() {
  141. return gdX;
  142. }
  143. public void setGdX(Double gdX) {
  144. this.gdX = gdX;
  145. }
  146. public Double getGdY() {
  147. return gdY;
  148. }
  149. public void setGdY(Double gdY) {
  150. this.gdY = gdY;
  151. }
  152. public Date getIntm() {
  153. return intm;
  154. }
  155. public void setIntm(Date intm) {
  156. this.intm = intm;
  157. }
  158. public Date getUptm() {
  159. return uptm;
  160. }
  161. public void setUptm(Date uptm) {
  162. this.uptm = uptm;
  163. }
  164. public String getDataStat() {
  165. return dataStat;
  166. }
  167. public void setDataStat(String dataStat) {
  168. this.dataStat = dataStat;
  169. }
  170. }