12345678910111213141516171819202122 |
- //
- // ExamStatisticsModel.h
- // LN_School
- //
- // Created by 张嵘 on 2019/7/29.
- // Copyright © 2019 Danson. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ExamStatisticsModel : NSObject
- @property (nonatomic, readwrite, copy) NSString *time;
- @property (nonatomic, readwrite, copy) NSString *carType;
- @property (nonatomic, readwrite, copy) NSString *examNum;
- @property (nonatomic, readwrite, copy) NSString *passNum;
- @property (nonatomic, readwrite, copy) NSString *passPercent;
- @end
- NS_ASSUME_NONNULL_END
|