80c6aca4c661383862df20a5fa820300c7db7a8a.svn-base 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  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:BisInspCdepRgstr
  9. *
  10. * @author lhc
  11. * @date 2020-11-19
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspCdepRgstr 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 = "bDepCode")
  23. private String bDepCode;
  24. // 单位名称
  25. @ApiModelProperty(value = "单位名称", name = "bChkUnit")
  26. private String bChkUnit;
  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 = "contact")
  38. private String contact;
  39. // 被检查单位联系人电话
  40. @ApiModelProperty(value = "被检查单位联系人电话", name = "contactTel")
  41. private String contactTel;
  42. // 被检查单位负责人
  43. @ApiModelProperty(value = "被检查单位负责人", name = "principal")
  44. private String principal;
  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 = "quaState")
  59. private String quaState;
  60. // 行为检测督查填报
  61. @ApiModelProperty(value = "行为检测督查填报", name = "behState")
  62. private String behState;
  63. // 检测能力——岩土工程督查填报
  64. @ApiModelProperty(value = "检测能力——岩土工程督查填报", name = "capState")
  65. private String capState;
  66. // 检测能力——混凝土工程督查填报
  67. @ApiModelProperty(value = "检测能力——混凝土工程督查填报", name = "conState")
  68. private String conState;
  69. // 督查状态
  70. @ApiModelProperty(value = "督查状态", name = "state")
  71. private String state;
  72. // 创建人
  73. @ApiModelProperty(value = "创建人", name = "persId")
  74. private String persId;
  75. // 创建时间
  76. @ApiModelProperty(value = "创建时间", name = "intm")
  77. private Date intm;
  78. // 修改时间
  79. @ApiModelProperty(value = "修改时间", name = "uptm")
  80. private Date uptm;
  81. // 督查组ID
  82. @ApiModelProperty(value = "督查组ID", name = "groupId")
  83. private String groupId;
  84. // 数据状态(0:正常;9:删除)
  85. @ApiModelProperty(value = "数据状态(0:正常;9:删除)", name = "dataStat")
  86. private String dataStat;
  87. public BisInspCdepRgstr() {
  88. }
  89. public String getId() {
  90. return id;
  91. }
  92. public void setId(String id) {
  93. this.id = id;
  94. }
  95. @Override
  96. public String getObjId() {
  97. return objId;
  98. }
  99. @Override
  100. public void setObjId(String objId) {
  101. this.objId = objId;
  102. }
  103. public String getBDepCode() {
  104. return bDepCode;
  105. }
  106. public void setBDepCode(String bDepCode) {
  107. this.bDepCode = bDepCode;
  108. }
  109. public String getBChkUnit() {
  110. return bChkUnit;
  111. }
  112. public void setBChkUnit(String bChkUnit) {
  113. this.bChkUnit = bChkUnit;
  114. }
  115. public String getAdCode() {
  116. return adCode;
  117. }
  118. public void setAdCode(String adCode) {
  119. this.adCode = adCode;
  120. }
  121. public String getAdName() {
  122. return adName;
  123. }
  124. public void setAdName(String adName) {
  125. this.adName = adName;
  126. }
  127. public String getLoc() {
  128. return loc;
  129. }
  130. public void setLoc(String loc) {
  131. this.loc = loc;
  132. }
  133. public String getContact() {
  134. return contact;
  135. }
  136. public void setContact(String contact) {
  137. this.contact = contact;
  138. }
  139. public String getContactTel() {
  140. return contactTel;
  141. }
  142. public void setContactTel(String contactTel) {
  143. this.contactTel = contactTel;
  144. }
  145. public String getPrincipal() {
  146. return principal;
  147. }
  148. public void setPrincipal(String principal) {
  149. this.principal = principal;
  150. }
  151. public Double getCenterX() {
  152. return centerX;
  153. }
  154. public void setCenterX(Double centerX) {
  155. this.centerX = centerX;
  156. }
  157. public Double getCenterY() {
  158. return centerY;
  159. }
  160. public void setCenterY(Double centerY) {
  161. this.centerY = centerY;
  162. }
  163. public Double getGdX() {
  164. return gdX;
  165. }
  166. public void setGdX(Double gdX) {
  167. this.gdX = gdX;
  168. }
  169. public Double getGdY() {
  170. return gdY;
  171. }
  172. public void setGdY(Double gdY) {
  173. this.gdY = gdY;
  174. }
  175. public String getQuaState() {
  176. return quaState;
  177. }
  178. public void setQuaState(String quaState) {
  179. this.quaState = quaState;
  180. }
  181. public String getBehState() {
  182. return behState;
  183. }
  184. public void setBehState(String behState) {
  185. this.behState = behState;
  186. }
  187. public String getCapState() {
  188. return capState;
  189. }
  190. public void setCapState(String capState) {
  191. this.capState = capState;
  192. }
  193. public String getConState() {
  194. return conState;
  195. }
  196. public void setConState(String conState) {
  197. this.conState = conState;
  198. }
  199. public String getState() {
  200. return state;
  201. }
  202. public void setState(String state) {
  203. this.state = state;
  204. }
  205. public String getPersId() {
  206. return persId;
  207. }
  208. public void setPersId(String persId) {
  209. this.persId = persId;
  210. }
  211. public Date getIntm() {
  212. return intm;
  213. }
  214. public void setIntm(Date intm) {
  215. this.intm = intm;
  216. }
  217. public Date getUptm() {
  218. return uptm;
  219. }
  220. public void setUptm(Date uptm) {
  221. this.uptm = uptm;
  222. }
  223. @Override
  224. public String getGroupId() {
  225. return groupId;
  226. }
  227. @Override
  228. public void setGroupId(String groupId) {
  229. this.groupId = groupId;
  230. }
  231. public String getDataStat() {
  232. return dataStat;
  233. }
  234. public void setDataStat(String dataStat) {
  235. this.dataStat = dataStat;
  236. }
  237. @Override
  238. public String toString() {
  239. return "BisInspCdepRgstr [" + "id=" + id + ", objId=" + objId + ", bDepCode=" + bDepCode + ", bChkUnit=" + bChkUnit + ", adCode=" + adCode + ", adName=" + adName + ", loc=" + loc + ", contact=" + contact + ", contactTel=" + contactTel + ", principal=" + principal + ", centerX=" + centerX + ", centerY=" + centerY + ", gdX=" + gdX + ", gdY=" + gdY + ", quaState=" + quaState + ", behState=" + behState + ", capState=" + capState + ", conState=" + conState + ", state=" + state + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", groupId=" + groupId + ", dataStat=" + dataStat + "]";
  240. }
  241. }