f45c46a02693724d6fe5cb7224c6b2e7e07d3155.svn-base 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. package cn.com.goldenwater.dcproj.model;
  2. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  3. import io.swagger.annotations.ApiModelProperty;
  4. import java.io.Serializable;
  5. import java.util.Date;
  6. /**
  7. * entity:BisInspWtuntRgstr
  8. *
  9. * @author lune
  10. * @date 2020-8-17
  11. */
  12. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  13. public class BisInspWtuntRgstr extends WtuntBase implements Serializable {
  14. @ApiModelProperty(value = "主键ID", position = 1)
  15. private String id;
  16. @ApiModelProperty(value = "*督查对象ID", position = 2)
  17. private String objId;
  18. @ApiModelProperty(value = "单位ID", position = 3)
  19. private String wtuntId;
  20. @ApiModelProperty(value = "*检查单位", position = 19)
  21. private String chkUnit;
  22. @ApiModelProperty(value = "*检查人员", position = 20)
  23. private String chkPers;
  24. @ApiModelProperty(value = "*检查时间", position = 21)
  25. private Date chkTm;
  26. @ApiModelProperty(value = "督查状态(0:未督查;1:督查中;2:已督查)", position = 22)
  27. private String state;
  28. @ApiModelProperty(value = "用水单位节约用水情况填报状态(0:未填报;1:未完成;2:已完成)", position = 23)
  29. private String wtuntStat;
  30. @ApiModelProperty(value = "创建人", position = 24)
  31. private String persId;
  32. @ApiModelProperty(value = "督查组ID", position = 25)
  33. private String groupId;
  34. @ApiModelProperty(value = "创建时间", position = 26)
  35. private Date intm;
  36. @ApiModelProperty(value = "修改时间", position = 27)
  37. private Date uptm;
  38. public BisInspWtuntRgstr() {
  39. }
  40. public String getId() {
  41. return id;
  42. }
  43. public void setId(String id) {
  44. this.id = id;
  45. }
  46. @Override
  47. public String getObjId() {
  48. return objId;
  49. }
  50. @Override
  51. public void setObjId(String objId) {
  52. this.objId = objId;
  53. }
  54. public String getWtuntId() {
  55. return wtuntId;
  56. }
  57. public void setWtuntId(String wtuntId) {
  58. this.wtuntId = wtuntId;
  59. }
  60. public String getChkUnit() {
  61. return chkUnit;
  62. }
  63. public void setChkUnit(String chkUnit) {
  64. this.chkUnit = chkUnit;
  65. }
  66. public String getChkPers() {
  67. return chkPers;
  68. }
  69. public void setChkPers(String chkPers) {
  70. this.chkPers = chkPers;
  71. }
  72. public Date getChkTm() {
  73. return chkTm;
  74. }
  75. public void setChkTm(Date chkTm) {
  76. this.chkTm = chkTm;
  77. }
  78. public String getState() {
  79. return state;
  80. }
  81. public void setState(String state) {
  82. this.state = state;
  83. }
  84. public String getWtuntStat() {
  85. return wtuntStat;
  86. }
  87. public void setWtuntStat(String wtuntStat) {
  88. this.wtuntStat = wtuntStat;
  89. }
  90. public String getPersId() {
  91. return persId;
  92. }
  93. public void setPersId(String persId) {
  94. this.persId = persId;
  95. }
  96. @Override
  97. public String getGroupId() {
  98. return groupId;
  99. }
  100. @Override
  101. public void setGroupId(String groupId) {
  102. this.groupId = groupId;
  103. }
  104. public Date getIntm() {
  105. return intm;
  106. }
  107. public void setIntm(Date intm) {
  108. this.intm = intm;
  109. }
  110. public Date getUptm() {
  111. return uptm;
  112. }
  113. public void setUptm(Date uptm) {
  114. this.uptm = uptm;
  115. }
  116. @Override
  117. public String toString() {
  118. return "BisInspWtuntRgstr{" +
  119. "id='" + id + '\'' +
  120. ", objId='" + objId + '\'' +
  121. ", wtuntId='" + wtuntId + '\'' +
  122. ", chkUnit='" + chkUnit + '\'' +
  123. ", chkPers='" + chkPers + '\'' +
  124. ", chkTm=" + chkTm +
  125. ", state='" + state + '\'' +
  126. ", wtuntStat='" + wtuntStat + '\'' +
  127. ", persId='" + persId + '\'' +
  128. ", groupId='" + groupId + '\'' +
  129. ", intm=" + intm +
  130. ", uptm=" + uptm +
  131. "} " + super.toString();
  132. }
  133. }