edu_nju_controller_AnalyzeController_getBugDataVO_BugDataVO.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>BugDataVO</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 BugDataVO : NSObject
  14. //
  15. @property (nonatomic, assign) NSString bugId;
  16. //
  17. @property (nonatomic, assign) NSString bugCategory;
  18. //
  19. @property (nonatomic, assign) NSString severity;
  20. //
  21. @property (nonatomic, assign) NSString bugCreateTime;
  22. //
  23. @property (nonatomic, assign) NSString bugPage;
  24. //
  25. @property (nonatomic, strong) NSInteger score;
  26. //
  27. @property (nonatomic, assign) NSString parent;
  28. //
  29. @property (nonatomic, strong) string[] children;
  30. //
  31. @property (nonatomic, assign) NSString root;
  32. //
  33. @property (nonatomic, strong) NSInteger goodNum;
  34. //
  35. @property (nonatomic, strong) NSInteger badNum;
  36. //
  37. @property (nonatomic, assign) NSString reportId;
  38. //
  39. @property (nonatomic, assign) NSString workerId;
  40. @end
  41. </xmp>
  42. </pre>
  43. <script src="https://cdn.jsdelivr.net/npm/google-code-prettify@1.0.5/bin/prettify.min.js"></script>
  44. </body>
  45. </html>