edu_nju_controller_AnalyzeController_getHistoricalData_HistoricalDataVO.html 920 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>HistoricalDataVO</title>
  6. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/google-code-prettify@1.0.5/bin/prettify.min.css">
  7. <link href="../style.css" rel="stylesheet" />
  8. </head>
  9. <body onload="PR.prettyPrint()">
  10. <pre class="prettyprint">
  11. <xmp>
  12. #import <Foundation/Foundation>;
  13. @interface HistoricalDataVO : NSObject
  14. //
  15. @property (nonatomic, strong) NSInteger reportNum;
  16. //各个报告的得分
  17. @property (nonatomic, strong) double[] scoreList;
  18. //报告总分
  19. @property (nonatomic, strong) double totalScore;
  20. //参加的和本次考试类型有关的众包测试次数
  21. @property (nonatomic, strong) NSInteger participateNum;
  22. //参加众包考试次数
  23. @property (nonatomic, strong) NSInteger totalParticipateNum;
  24. @end
  25. </xmp>
  26. </pre>
  27. <script src="https://cdn.jsdelivr.net/npm/google-code-prettify@1.0.5/bin/prettify.min.js"></script>
  28. </body>
  29. </html>