// // AppointDriverModel.h // LN_School // // Created by 张嵘 on 2019/8/1. // Copyright © 2019 Danson. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface AppointDriverModel : NSObject @property (nonatomic, readwrite, copy) NSString *code; @property (nonatomic, readwrite, copy) NSString *passStatus; @property (nonatomic, readwrite, copy) NSString *studentName; @property (nonatomic, readwrite, copy) NSString *objectStatus; @property (nonatomic, readwrite, copy) NSString *date; @end NS_ASSUME_NONNULL_END