ad143978d03f40c8a59d1935163ecd0e2eda6993.svn-base 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import cn.com.goldenwater.core.model.BaseBean;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  6. import io.swagger.annotations.ApiModelProperty;
  7. /**
  8. * entity:BisInspGrowClo
  9. *
  10. * @author lhc
  11. * @date 2021-1-22
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspGrowClo extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value="主键ID",name="id")
  17. private String id;
  18. // 登记表ID
  19. @ApiModelProperty(value="登记表ID",name="rgstrId")
  20. private String rgstrId;
  21. // 是否拔泵
  22. @ApiModelProperty(value="是否拔泵",name="isDrawPump")
  23. private String isDrawPump;
  24. // 是否拆除启动柜
  25. @ApiModelProperty(value="是否拆除启动柜",name="isDisCab")
  26. private String isDisCab;
  27. // 是否拆除配电箱
  28. @ApiModelProperty(value="是否拆除配电箱",name="isDisBox")
  29. private String isDisBox;
  30. // 是否封存井口
  31. @ApiModelProperty(value="是否封存井口",name="isSealWell")
  32. private String isSealWell;
  33. // 坐标是否一致
  34. @ApiModelProperty(value="坐标是否一致",name="isCoorIden")
  35. private String isCoorIden;
  36. // 是否设立标识牌
  37. @ApiModelProperty(value="是否设立标识牌",name="isEstabCard")
  38. private String isEstabCard;
  39. // 填报状态
  40. @ApiModelProperty(value="填报状态",name="state")
  41. private String state;
  42. // 记录人员ID
  43. @ApiModelProperty(value="记录人员ID",name="persId")
  44. private String persId;
  45. // 创建时间
  46. @ApiModelProperty(value="创建时间",name="intm")
  47. private Date intm;
  48. // 修改时间
  49. @ApiModelProperty(value="修改时间",name="uptm")
  50. private Date uptm;
  51. // 数据状态
  52. @ApiModelProperty(value="数据状态",name="dataStat")
  53. private String dataStat;
  54. public BisInspGrowClo() {
  55. }
  56. public String getId() {
  57. return id;
  58. }
  59. public void setId(String id) {
  60. this.id = id;
  61. }
  62. @Override
  63. public String getRgstrId() {
  64. return rgstrId;
  65. }
  66. @Override
  67. public void setRgstrId(String rgstrId) {
  68. this.rgstrId = rgstrId;
  69. }
  70. public String getIsDrawPump() {
  71. return isDrawPump;
  72. }
  73. public void setIsDrawPump(String isDrawPump) {
  74. this.isDrawPump = isDrawPump;
  75. }
  76. public String getIsDisCab() {
  77. return isDisCab;
  78. }
  79. public void setIsDisCab(String isDisCab) {
  80. this.isDisCab = isDisCab;
  81. }
  82. public String getIsDisBox() {
  83. return isDisBox;
  84. }
  85. public void setIsDisBox(String isDisBox) {
  86. this.isDisBox = isDisBox;
  87. }
  88. public String getIsSealWell() {
  89. return isSealWell;
  90. }
  91. public void setIsSealWell(String isSealWell) {
  92. this.isSealWell = isSealWell;
  93. }
  94. public String getIsCoorIden() {
  95. return isCoorIden;
  96. }
  97. public void setIsCoorIden(String isCoorIden) {
  98. this.isCoorIden = isCoorIden;
  99. }
  100. public String getIsEstabCard() {
  101. return isEstabCard;
  102. }
  103. public void setIsEstabCard(String isEstabCard) {
  104. this.isEstabCard = isEstabCard;
  105. }
  106. public String getState() {
  107. return state;
  108. }
  109. public void setState(String state) {
  110. this.state = state;
  111. }
  112. public String getPersId() {
  113. return persId;
  114. }
  115. public void setPersId(String persId) {
  116. this.persId = persId;
  117. }
  118. public Date getIntm() {
  119. return intm;
  120. }
  121. public void setIntm(Date intm) {
  122. this.intm = intm;
  123. }
  124. public Date getUptm() {
  125. return uptm;
  126. }
  127. public void setUptm(Date uptm) {
  128. this.uptm = uptm;
  129. }
  130. public String getDataStat() {
  131. return dataStat;
  132. }
  133. public void setDataStat(String dataStat) {
  134. this.dataStat = dataStat;
  135. }
  136. @Override
  137. public String toString() {
  138. return "BisInspGrowClo [" + "id=" + id + ", rgstrId=" + rgstrId + ", isDrawPump=" + isDrawPump + ", isDisCab=" + isDisCab + ", isDisBox=" + isDisBox + ", isSealWell=" + isSealWell + ", isCoorIden=" + isCoorIden + ", isEstabCard=" + isEstabCard + ", state=" + state + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  139. }
  140. }