1234567891011121314151617181920212223242526272829303132333435 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>HistoricalDataVO</title>
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/google-code-prettify@1.0.5/bin/prettify.min.css">
- <link href="../style.css" rel="stylesheet" />
- </head>
- <body onload="PR.prettyPrint()">
- <pre class="prettyprint">
- <xmp>
- #import <Foundation/Foundation>;
- @interface HistoricalDataVO : NSObject
- //
- @property (nonatomic, strong) NSInteger reportNum;
- //各个报告的得分
- @property (nonatomic, strong) double[] scoreList;
- //报告总分
- @property (nonatomic, strong) double totalScore;
- //参加的和本次考试类型有关的众包测试次数
- @property (nonatomic, strong) NSInteger participateNum;
- //参加众包考试次数
- @property (nonatomic, strong) NSInteger totalParticipateNum;
- @end
- </xmp>
- </pre>
- <script src="https://cdn.jsdelivr.net/npm/google-code-prettify@1.0.5/bin/prettify.min.js"></script>
- </body>
- </html>
|