123456789101112131415161718192021222324 |
- //
- // PreExamMarkModel.h
- // LN_School
- //
- // Created by 张嵘 on 2019/7/31.
- // Copyright © 2019 Danson. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PreExamMarkModel : NSObject
- @property (nonatomic, readwrite, copy) NSString *studentName;
- @property (nonatomic, readwrite, copy) NSString *passStatus;
- @property (nonatomic, readwrite, copy) NSString *coachName;
- @property (nonatomic, readwrite, copy) NSString *object;
- @property (nonatomic, readwrite, copy) NSString *objectScore;
- @property (nonatomic, readwrite, copy) NSString *date;
- @end
- NS_ASSUME_NONNULL_END
|