132efb31c729a767f1ad3cf96ca0c89b19e49e13.svn-base 2.9 KB

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