TicketListModel.h 901 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // TicketListModel.h
  3. //
  4. // Created by on 2020/7/15
  5. // Copyright (c) 2020 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface TicketListModel : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, assign) double gender;
  10. @property (nonatomic, strong) NSString *cardNo;
  11. @property (nonatomic, strong) NSString *certificatePhoto;
  12. @property (nonatomic, strong) NSString *examTime;
  13. @property (nonatomic, assign) double examRegistrationId;
  14. @property (nonatomic, assign) double level;
  15. @property (nonatomic, strong) NSString *examAddress;
  16. @property (nonatomic, assign) double subjectId;
  17. @property (nonatomic, strong) NSString *subjectName;
  18. @property (nonatomic, strong) NSString *realName;
  19. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  20. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  21. - (NSDictionary *)dictionaryRepresentation;
  22. @end