682769fc8243ecd092ee71d6b77de1f38996a186.svn-base 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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:BisInspEfpRgstrReasonsRec
  9. *
  10. * @author lune
  11. * @date 2020-5-27
  12. */
  13. @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
  14. public class BisInspEfpRgstrReasonsRec extends BaseBean implements Serializable {
  15. @ApiModelProperty("主键ID*")
  16. private String id;
  17. @ApiModelProperty("水库督查登记ID*")
  18. private String rgstrId;
  19. @ApiModelProperty("原因分析")
  20. private String reasons;
  21. @ApiModelProperty("整改意见")
  22. private String rectSugg;
  23. @ApiModelProperty("备注")
  24. private String note;
  25. @ApiModelProperty("填报状态(0:未填报;1:填报中;2:已填报)")
  26. private String status;
  27. @ApiModelProperty("记录人员ID")
  28. private String recPersId;
  29. @ApiModelProperty("记录人员")
  30. private String recPers;
  31. @ApiModelProperty("记录人员电话")
  32. private String recPersTel;
  33. @ApiModelProperty("创建时间")
  34. private Date intm;
  35. @ApiModelProperty("修改时间")
  36. private Date uptm;
  37. public BisInspEfpRgstrReasonsRec() {
  38. }
  39. public String getId() {
  40. return id;
  41. }
  42. public void setId(String id) {
  43. this.id = id;
  44. }
  45. @Override
  46. public String getRgstrId() {
  47. return rgstrId;
  48. }
  49. @Override
  50. public void setRgstrId(String rgstrId) {
  51. this.rgstrId = rgstrId;
  52. }
  53. public String getReasons() {
  54. return reasons;
  55. }
  56. public void setReasons(String reasons) {
  57. this.reasons = reasons;
  58. }
  59. public String getRectSugg() {
  60. return rectSugg;
  61. }
  62. public void setRectSugg(String rectSugg) {
  63. this.rectSugg = rectSugg;
  64. }
  65. public String getNote() {
  66. return note;
  67. }
  68. public void setNote(String note) {
  69. this.note = note;
  70. }
  71. public String getStatus() {
  72. return status;
  73. }
  74. public void setStatus(String status) {
  75. this.status = status;
  76. }
  77. public String getRecPersId() {
  78. return recPersId;
  79. }
  80. public void setRecPersId(String recPersId) {
  81. this.recPersId = recPersId;
  82. }
  83. public String getRecPers() {
  84. return recPers;
  85. }
  86. public void setRecPers(String recPers) {
  87. this.recPers = recPers;
  88. }
  89. public String getRecPersTel() {
  90. return recPersTel;
  91. }
  92. public void setRecPersTel(String recPersTel) {
  93. this.recPersTel = recPersTel;
  94. }
  95. public Date getIntm() {
  96. return intm;
  97. }
  98. public void setIntm(Date intm) {
  99. this.intm = intm;
  100. }
  101. public Date getUptm() {
  102. return uptm;
  103. }
  104. public void setUptm(Date uptm) {
  105. this.uptm = uptm;
  106. }
  107. @Override
  108. public String toString() {
  109. return "BisInspEfpRgstrReasonsRec [" + "id=" + id + ", rgstrId=" + rgstrId + ", reasons=" + reasons + ", rectSugg=" + rectSugg + ", note=" + note + ", status=" + status + ", recPersId=" + recPersId + ", recPers=" + recPers + ", recPersTel=" + recPersTel + ", intm=" + intm + ", uptm=" + uptm + "]";
  110. }
  111. }