NYFailGroupPointDataModel.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. //
  2. // NYFailGroupPointDataModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2024/12/13.
  6. // Copyright © 2024 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYFailItemPointDataQuesTexts: RQBaseModel
  11. @property (nonatomic, copy) NSString *subTitle;
  12. @property (nonatomic, strong) NSArray<NSString *> *quesItem;
  13. @end
  14. @interface NYFailItemPointDataQuesImage: RQBaseModel
  15. @property (nonatomic, copy) NSString *image;
  16. @property (nonatomic, copy) NSString *subTitle;
  17. @end
  18. @interface NYFailItemPointDataCon: NSObject
  19. @property (nonatomic, copy) NSString *image;
  20. @property (nonatomic, strong) NSArray<NYFailItemPointDataQuesImage *> *questions;
  21. @property (nonatomic, copy) NSString *title;
  22. @end
  23. @interface NYFailItemPointDataQuestions: RQBaseModel
  24. @property (nonatomic, strong) NSArray<NSString *> *images;
  25. @property (nonatomic, strong) NSArray<NYFailItemPointDataQuesTexts *> *quesTexts;
  26. //拘留
  27. @property (nonatomic, copy) NSString *tag;
  28. @property (nonatomic, strong) NSArray<NYFailItemPointDataQuesTexts *> *tagCon;
  29. @end
  30. @interface NYFailItemPointDataModel : RQBaseModel
  31. @property (nonatomic, assign) NSInteger category;
  32. @property (nonatomic, copy) NSString *content;
  33. @property (nonatomic, copy) NSString *questionIds;
  34. @property (nonatomic, assign) NSInteger score;
  35. @property (nonatomic, copy) NSString *scoreDayUrl;
  36. @property (nonatomic, copy) NSString *scoreNightUrl;
  37. @property (nonatomic, copy) NSString *showType;
  38. @property (nonatomic, copy) NSString *titleDayUrl;
  39. @property (nonatomic, copy) NSString *titleNightUrl;
  40. @property (nonatomic, copy) NSString *title;
  41. @property (nonatomic, strong) NSArray *question_array;
  42. @property (nonatomic, assign) CGFloat imgsH;
  43. @property (nonatomic, assign) CGFloat iviewH;
  44. //驾驶证
  45. @property (nonatomic, copy) NSString *btnBgcColor;
  46. @property (nonatomic, strong) NYFailItemPointDataQuestions *questions;
  47. //罚款//周期//天气
  48. @property (nonatomic, strong) NSArray<NYFailItemPointDataQuesTexts *> *fquestions;
  49. //拘留
  50. @property (nonatomic, strong) NSArray<NYFailItemPointDataQuesImage *> *iquestions;
  51. @property (nonatomic, strong) NSArray<NYFailItemPointDataQuestions *> *tagquestions;
  52. //手势
  53. @property (nonatomic, strong) NSArray<NYFailItemPointDataCon *> *con;
  54. @property (nonatomic, copy) NSString *mainTit;
  55. @end
  56. @interface NYFailItemVideoDateModel : RQBaseModel
  57. @property (nonatomic, copy) NSString *endButtonText;
  58. @property (nonatomic, copy) NSString *poster;
  59. @property (nonatomic, copy) NSString *publicityMediumUrl;
  60. @property (nonatomic, copy) NSString *vipPublicityMediumUrl;
  61. @end
  62. @interface NYFailGroupPointDataModel : RQBaseModel
  63. @property (nonatomic, assign) NSInteger category;
  64. @property (nonatomic, copy) NSString *pageType;
  65. @property (nonatomic, strong) NSArray<NYFailItemPointDataModel *> *pointData;
  66. @property (nonatomic, copy) NSString *rightsType;
  67. @property (nonatomic, copy) NSString *source;
  68. @property (nonatomic, strong) NYFailItemVideoDateModel *videoDate;
  69. @end
  70. NS_ASSUME_NONNULL_END