RQYDTPointModel.h 959 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // RQYDTPointModel.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/4/5.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQBaseModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQYDTPointModel : RQBaseModel
  11. /**
  12. * id
  13. */
  14. @property (nonatomic, readwrite, assign) NSInteger id;
  15. /**
  16. * 考点名称
  17. */
  18. @property (nonatomic, readwrite, copy) NSString *name;
  19. /**
  20. * 考点名称
  21. */
  22. @property (nonatomic, readwrite, copy) NSString *ename;
  23. /**
  24. * 科目(1:科目一 2:科目二 3:科目三 4:科目四)
  25. */
  26. @property (nonatomic, readwrite, assign) NSInteger kemu;
  27. /**
  28. * 题目适用车型(test:为测试色盲题 所有车型通用)
  29. */
  30. @property (nonatomic, readwrite, copy) NSString *gs;
  31. /**
  32. * state
  33. */
  34. @property (nonatomic, readwrite, assign) NSInteger state;
  35. /**
  36. * url
  37. */
  38. @property (nonatomic, readwrite, copy) NSString *url;
  39. + (id)ydtPointModelWithFMResultSet:(FMResultSet *)resultSet;
  40. @end
  41. NS_ASSUME_NONNULL_END