516f305cb181b3fb43783ebf2e0daca317ec5af2.svn-base 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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:BisInspVillgdWtspOthr
  9. *
  10. * @author lhc
  11. * @date 2021-4-23
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspVillgdWtspOthr extends BaseBean implements Serializable {
  15. // 主键ID
  16. @ApiModelProperty(value="主键ID",name="id")
  17. private String id;
  18. // 供水水工程ID
  19. @ApiModelProperty(value="供水水工程ID",name="wtspId")
  20. private String wtspId;
  21. // 登记表ID
  22. @ApiModelProperty(value="登记表ID",name="rgstrId")
  23. private String rgstrId;
  24. // 工程管理范围环境卫生是否杂乱
  25. @ApiModelProperty(value="工程管理范围环境卫生是否杂乱",name="isHealth")
  26. private String isHealth;
  27. // 其他问题
  28. @ApiModelProperty(value="其他问题",name="other")
  29. private String other;
  30. // 记录人员ID
  31. @ApiModelProperty(value="记录人员ID",name="persId")
  32. private String persId;
  33. // 创建时间
  34. @ApiModelProperty(value="创建时间",name="intm")
  35. private Date intm;
  36. // 最后修改时间
  37. @ApiModelProperty(value="最后修改时间",name="uptm")
  38. private Date uptm;
  39. // 备注
  40. @ApiModelProperty(value="备注",name="note")
  41. private String note;
  42. // 数据状态(0:正常;9:删除)
  43. @ApiModelProperty(value="数据状态(0:正常;9:删除)",name="dataStat")
  44. private String dataStat;
  45. @ApiModelProperty(value = "状态", name = "state")
  46. private String state;
  47. public BisInspVillgdWtspOthr() {
  48. }
  49. public String getState() {
  50. return state;
  51. }
  52. public void setState(String state) {
  53. this.state = state;
  54. }
  55. public String getId() {
  56. return id;
  57. }
  58. public void setId(String id) {
  59. this.id = id;
  60. }
  61. public String getWtspId() {
  62. return wtspId;
  63. }
  64. public void setWtspId(String wtspId) {
  65. this.wtspId = wtspId;
  66. }
  67. public String getRgstrId() {
  68. return rgstrId;
  69. }
  70. public void setRgstrId(String rgstrId) {
  71. this.rgstrId = rgstrId;
  72. }
  73. public String getIsHealth() {
  74. return isHealth;
  75. }
  76. public void setIsHealth(String isHealth) {
  77. this.isHealth = isHealth;
  78. }
  79. public String getOther() {
  80. return other;
  81. }
  82. public void setOther(String other) {
  83. this.other = other;
  84. }
  85. public String getPersId() {
  86. return persId;
  87. }
  88. public void setPersId(String persId) {
  89. this.persId = persId;
  90. }
  91. public Date getIntm() {
  92. return intm;
  93. }
  94. public void setIntm(Date intm) {
  95. this.intm = intm;
  96. }
  97. public Date getUptm() {
  98. return uptm;
  99. }
  100. public void setUptm(Date uptm) {
  101. this.uptm = uptm;
  102. }
  103. public String getNote() {
  104. return note;
  105. }
  106. public void setNote(String note) {
  107. this.note = note;
  108. }
  109. public String getDataStat() {
  110. return dataStat;
  111. }
  112. public void setDataStat(String dataStat) {
  113. this.dataStat = dataStat;
  114. }
  115. @Override
  116. public String toString() {
  117. return "BisInspVillgdWtspOthr [" + "id=" + id + ", wtspId=" + wtspId + ", rgstrId=" + rgstrId + ", isHealth=" + isHealth + ", other=" + other + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
  118. }
  119. }