05c71de633fd869a33737a8ca9a6342df0ff8b9d.svn-base 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. package cn.com.goldenwater.dcproj.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. import java.util.List;
  5. import cn.com.goldenwater.core.model.BaseBean;
  6. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  7. import io.swagger.annotations.ApiModelProperty;
  8. /**
  9. * entity:BisInspQaScore1
  10. *
  11. * @author hjp
  12. * @date 2022-7-28
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class BisInspQaScore1 extends BaseBean implements Serializable {
  16. // 主键ID
  17. @ApiModelProperty(value = "主键ID", name = "id")
  18. private String id;
  19. // 子表ID
  20. @ApiModelProperty(value = "子表ID", name = "caseId")
  21. private String caseId;
  22. // 说明
  23. @ApiModelProperty(value = "说明", name = "explain")
  24. private String explain;
  25. // 专家名称
  26. @ApiModelProperty(value = "专家名称", name = "expertNm")
  27. private String expertNm;
  28. // 专家ID
  29. @ApiModelProperty(value = "专家ID", name = "expertId")
  30. private String expertId;
  31. // 分数名称
  32. @ApiModelProperty(value = "分数名称", name = "scoreName")
  33. private String scoreName;
  34. // 创建时间
  35. @ApiModelProperty(value = "创建时间", name = "intm")
  36. private Date intm;
  37. // 最后修改时间
  38. @ApiModelProperty(value = "最后修改时间", name = "uptm")
  39. private Date uptm;
  40. // 数据状态
  41. @ApiModelProperty(value = "数据状态", name = "dataStat")
  42. private String dataStat;
  43. private List<GwComFile> gwComFileList;
  44. public BisInspQaScore1() {
  45. }
  46. public String getId() {
  47. return id;
  48. }
  49. public void setId(String id) {
  50. this.id = id;
  51. }
  52. public String getCaseId() {
  53. return caseId;
  54. }
  55. public void setCaseId(String caseId) {
  56. this.caseId = caseId;
  57. }
  58. public String getExplain() {
  59. return explain;
  60. }
  61. public void setExplain(String explain) {
  62. this.explain = explain;
  63. }
  64. public String getExpertNm() {
  65. return expertNm;
  66. }
  67. public void setExpertNm(String expertNm) {
  68. this.expertNm = expertNm;
  69. }
  70. public String getExpertId() {
  71. return expertId;
  72. }
  73. public void setExpertId(String expertId) {
  74. this.expertId = expertId;
  75. }
  76. public String getScoreName() {
  77. return scoreName;
  78. }
  79. public void setScoreName(String scoreName) {
  80. this.scoreName = scoreName;
  81. }
  82. public Date getIntm() {
  83. return intm;
  84. }
  85. public void setIntm(Date intm) {
  86. this.intm = intm;
  87. }
  88. public Date getUptm() {
  89. return uptm;
  90. }
  91. public void setUptm(Date uptm) {
  92. this.uptm = uptm;
  93. }
  94. public String getDataStat() {
  95. return dataStat;
  96. }
  97. public void setDataStat(String dataStat) {
  98. this.dataStat = dataStat;
  99. }
  100. public List<GwComFile> getGwComFileList() {
  101. return gwComFileList;
  102. }
  103. public void setGwComFileList(List<GwComFile> gwComFileList) {
  104. this.gwComFileList = gwComFileList;
  105. }
  106. @Override
  107. public String toString() {
  108. return "BisInspQaScore1 [" + "id=" + id + ", caseId=" + caseId + ", explain=" + explain + ", expertNm=" + expertNm + ", expertId=" + expertId + ", scoreName=" + scoreName + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + "]";
  109. }
  110. }