ResultViewingPageVo.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. * 题目项的id
  24. */
  25. @ApiModelProperty("题目项的id")
  26. private Long evaluateManageItemId;
  27. /**
  28. * 题目名称
  29. */
  30. @ApiModelProperty("题目名称")
  31. private String problem;
  32. /**
  33. * 标题名称
  34. */
  35. @ApiModelProperty("标题名称")
  36. private String topic;
  37. /**
  38. * 应打分人数
  39. */
  40. @ApiModelProperty("应打分人数")
  41. private Integer planExecuterNum;
  42. /**
  43. * 实际打分人数
  44. */
  45. @ApiModelProperty("实际打分人数")
  46. private Integer actualExecuterNum;
  47. /**
  48. * 单个被评对象的每一道题的总得分
  49. */
  50. @ApiModelProperty("单个被评对象的每一道题的总得分")
  51. private Integer sumScore;
  52. }