123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- //
- // RQYDTPointModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/4/5.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQBaseModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQYDTPointModel : RQBaseModel
- /**
- * id
- */
- @property (nonatomic, readwrite, assign) NSInteger id;
- /**
- * 考点名称
- */
- @property (nonatomic, readwrite, copy) NSString *name;
- /**
- * 考点名称
- */
- @property (nonatomic, readwrite, copy) NSString *ename;
- /**
- * 科目(1:科目一 2:科目二 3:科目三 4:科目四)
- */
- @property (nonatomic, readwrite, assign) NSInteger kemu;
- /**
- * 题目适用车型(test:为测试色盲题 所有车型通用)
- */
- @property (nonatomic, readwrite, copy) NSString *gs;
- /**
- * state
- */
- @property (nonatomic, readwrite, assign) NSInteger state;
- /**
- * url
- */
- @property (nonatomic, readwrite, copy) NSString *url;
- + (id)ydtPointModelWithFMResultSet:(FMResultSet *)resultSet;
- @end
- NS_ASSUME_NONNULL_END
|