677670147d88d007e704bdde36f43e5620eb067b.svn-base 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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:BisInspRsvrSdRpr
  9. *
  10. * @author lhc
  11. * @date 2022-3-14
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspRsvrSdRpr extends BaseBean implements Serializable {
  15. // 2.是否对大坝进行安全监测、采集监测数据(如有要求)
  16. @ApiModelProperty(value = "2.是否对大坝进行安全监测、采集监测数据(如有要求)", name = "isMontData")
  17. private String isMontData;
  18. // 1.是否按要求进行日常维护
  19. @ApiModelProperty(value = "1.是否按要求进行日常维护", name = "isNmorlRun")
  20. private String isNmorlRun;
  21. // 2.对影响大坝安全的白蚁危害等安全隐患是否及时进行处理
  22. @ApiModelProperty(value = "2.对影响大坝安全的白蚁危害等安全隐患是否及时进行处理", name = "isDngChk")
  23. private String isDngChk;
  24. // 数据状态
  25. @ApiModelProperty(value = "数据状态", name = "dataStat")
  26. private String dataStat;
  27. // 记录人员ID
  28. @ApiModelProperty(value = "记录人员ID", name = "persId")
  29. private String persId;
  30. // 创建时间
  31. @ApiModelProperty(value = "创建时间", name = "intm")
  32. private Date intm;
  33. // 最后修改时间
  34. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  35. private Date uptm;
  36. // 备注
  37. @ApiModelProperty(value = "备注", name = "note")
  38. private String note;
  39. // 主键ID
  40. @ApiModelProperty(value = "主键ID", name = "id")
  41. private String id;
  42. // 督查登记ID
  43. @ApiModelProperty(value = "督查登记ID", name = "rgstrId")
  44. private String rgstrId;
  45. // 1.巡查(巡检)通道是否满足巡查(巡检)需要
  46. @ApiModelProperty(value = "1.巡查(巡检)通道是否满足巡查(巡检)需要", name = "isRoadChk")
  47. private String isRoadChk;
  48. // 督查状态(0:未督查;1:督查中;2:已督查)
  49. @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", name = "state2")
  50. private String state;
  51. public String getState() {
  52. return state;
  53. }
  54. public void setState(String state) {
  55. this.state = state;
  56. }
  57. public BisInspRsvrSdRpr() {
  58. }
  59. public String getIsMontData() {
  60. return isMontData;
  61. }
  62. public void setIsMontData(String isMontData) {
  63. this.isMontData = isMontData;
  64. }
  65. public String getIsNmorlRun() {
  66. return isNmorlRun;
  67. }
  68. public void setIsNmorlRun(String isNmorlRun) {
  69. this.isNmorlRun = isNmorlRun;
  70. }
  71. public String getIsDngChk() {
  72. return isDngChk;
  73. }
  74. public void setIsDngChk(String isDngChk) {
  75. this.isDngChk = isDngChk;
  76. }
  77. public String getDataStat() {
  78. return dataStat;
  79. }
  80. public void setDataStat(String dataStat) {
  81. this.dataStat = dataStat;
  82. }
  83. public String getPersId() {
  84. return persId;
  85. }
  86. public void setPersId(String persId) {
  87. this.persId = persId;
  88. }
  89. public Date getIntm() {
  90. return intm;
  91. }
  92. public void setIntm(Date intm) {
  93. this.intm = intm;
  94. }
  95. public Date getUptm() {
  96. return uptm;
  97. }
  98. public void setUptm(Date uptm) {
  99. this.uptm = uptm;
  100. }
  101. public String getNote() {
  102. return note;
  103. }
  104. public void setNote(String note) {
  105. this.note = note;
  106. }
  107. public String getId() {
  108. return id;
  109. }
  110. public void setId(String id) {
  111. this.id = id;
  112. }
  113. public String getRgstrId() {
  114. return rgstrId;
  115. }
  116. public void setRgstrId(String rgstrId) {
  117. this.rgstrId = rgstrId;
  118. }
  119. public String getIsRoadChk() {
  120. return isRoadChk;
  121. }
  122. public void setIsRoadChk(String isRoadChk) {
  123. this.isRoadChk = isRoadChk;
  124. }
  125. @Override
  126. public String toString() {
  127. return "BisInspRsvrSdRpr [" + "isMontData=" + isMontData + ", isNmorlRun=" + isNmorlRun + ", isDngChk=" + isDngChk + ", dataStat=" + dataStat + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", id=" + id + ", rgstrId=" + rgstrId + ", isRoadChk=" + isRoadChk + "]";
  128. }
  129. }