b4644832f5cb7a1c1cab19baa0d8ec11f265279c.svn-base 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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:BisInspAnswer
  9. *
  10. * @author lql
  11. * @date 2026-1-12
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspAnswer 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. // 关联问题ID
  22. @ApiModelProperty(value = "关联问题ID", name = "questionId")
  23. private String questionId;
  24. // 问题答案
  25. @ApiModelProperty(value = "问题答案", name = "answerValue")
  26. private String answerValue;
  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. // 数据状态
  40. @ApiModelProperty(value = "数据状态", name = "dataStat")
  41. private String dataStat;
  42. public BisInspAnswer() {
  43. }
  44. public String getId() {
  45. return id;
  46. }
  47. public void setId(String id) {
  48. this.id = id;
  49. }
  50. public String getRgstrId() {
  51. return rgstrId;
  52. }
  53. public void setRgstrId(String rgstrId) {
  54. this.rgstrId = rgstrId;
  55. }
  56. public String getQuestionId() {
  57. return questionId;
  58. }
  59. public void setQuestionId(String questionId) {
  60. this.questionId = questionId;
  61. }
  62. public String getAnswerValue() {
  63. return answerValue;
  64. }
  65. public void setAnswerValue(String answerValue) {
  66. this.answerValue = answerValue;
  67. }
  68. public String getPersId() {
  69. return persId;
  70. }
  71. public void setPersId(String persId) {
  72. this.persId = persId;
  73. }
  74. public Date getIntm() {
  75. return intm;
  76. }
  77. public void setIntm(Date intm) {
  78. this.intm = intm;
  79. }
  80. public Date getUptm() {
  81. return uptm;
  82. }
  83. public void setUptm(Date uptm) {
  84. this.uptm = uptm;
  85. }
  86. public String getNote() {
  87. return note;
  88. }
  89. public void setNote(String note) {
  90. this.note = note;
  91. }
  92. public String getDataStat() {
  93. return dataStat;
  94. }
  95. public void setDataStat(String dataStat) {
  96. this.dataStat = dataStat;
  97. }
  98. @Override
  99. public String toString() {
  100. return "BisInspAnswer [" + "id=" + id + ", rgstrId=" + rgstrId + ", questionId=" + questionId + ", answerValue=" + answerValue + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", note=" + note + ", dataStat=" + dataStat + "]";
  101. }
  102. }