ResultViewingPageVo.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. package com.xjrsoft.module.evaluate.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. /**
  5. * @title: 评价项表单出参
  6. * @Author szs
  7. * @Date: 2024-01-15
  8. * @Version 1.0
  9. */
  10. @Data
  11. public class ResultViewingPageVo {
  12. /**
  13. * 具体被评的那个对象的id
  14. */
  15. @ApiModelProperty("具体被评的那个对象的id")
  16. private Long objectId;
  17. /**
  18. * 具体被评的那个对象的id
  19. */
  20. @ApiModelProperty("具体被评的那个对象的id")
  21. private String objectIdCN;
  22. /**
  23. * 应打分人数
  24. */
  25. @ApiModelProperty("应打分人数")
  26. private Integer planExecuterNum;
  27. /**
  28. * 实际打分人数
  29. */
  30. @ApiModelProperty("实际打分人数")
  31. private Integer actualExecuterNum;
  32. /**
  33. * 题目项的id
  34. */
  35. @ApiModelProperty("题目项的id")
  36. private Long evaluateManageItemId;
  37. /**
  38. * 题目名称
  39. */
  40. @ApiModelProperty("题目名称")
  41. private String problem;
  42. /**
  43. * 单个被评对象的每一道题的平均得分
  44. */
  45. @ApiModelProperty("单个被评对象的每一道题的平均得分")
  46. private Integer sumScore;
  47. /**
  48. * 标题名称
  49. */
  50. @ApiModelProperty("标题名称")
  51. private String topic;
  52. /**
  53. * 单个被评对象的每一道题的平均得分
  54. */
  55. @ApiModelProperty("单个被评对象的每个标题的平均得分")
  56. private Integer topicScore;
  57. /**
  58. * 单个被评对象的每一道题的平均得分
  59. */
  60. @ApiModelProperty("单个被评对象的综合平均得分")
  61. private Integer synthesisScore;
  62. }