TeacherInfo.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //
  2. // TeacherInfo.h
  3. //
  4. // Created by Steven on 2022/4/11
  5. // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface TeacherInfo : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *birthdate;
  10. @property (nonatomic, strong) NSString *graduateSchool;
  11. @property (nonatomic, strong) NSString *workUnit;
  12. @property (nonatomic, strong) NSString *heardUrl;
  13. @property (nonatomic, strong) NSString *subject;
  14. @property (nonatomic, strong) NSString *gradCertificate;
  15. @property (nonatomic, strong) NSString *degreeCertificate;
  16. @property (nonatomic, strong) NSString *teacherCertificate;
  17. @property (nonatomic, strong) NSString *musicianAuthStatus;
  18. @property (nonatomic, strong) NSString *educationBackground;
  19. @property (nonatomic, strong) NSString *updateTime;
  20. @property (nonatomic, strong) NSString *musicianDate;
  21. @property (nonatomic, assign) double isBank;
  22. @property (nonatomic, strong) NSString *realName;
  23. @property (nonatomic, strong) NSString *introduction;
  24. @property (nonatomic, assign) double starGrade;
  25. @property (nonatomic, assign) double unExpTime;
  26. @property (nonatomic, strong) NSString *entryStatus;
  27. @property (nonatomic, strong) NSString *entryAuthDate;
  28. @property (nonatomic, strong) NSString *subjectId;
  29. @property (nonatomic, strong) NSString *username;
  30. @property (nonatomic, strong) NSString *entryFlag;
  31. @property (nonatomic, strong) NSString *gender;
  32. @property (nonatomic, assign) double fansNum;
  33. @property (nonatomic, strong) NSString *musicianFlag;
  34. @property (nonatomic, strong) NSString * liveFlag;
  35. @property (nonatomic, strong) NSString *createTime;
  36. @property (nonatomic, assign) double expTime;
  37. @property (nonatomic, strong) NSString *technicalTitles;
  38. @property (nonatomic, strong) NSString *subjectName;
  39. @property (nonatomic, strong) NSString *phone;
  40. @property (nonatomic, strong) NSString *memo;
  41. @property (nonatomic, assign) double isReal;
  42. @property (nonatomic, strong) NSString *idCardNo;
  43. @property (nonatomic, strong) NSString *userId;
  44. @property (nonatomic, strong) NSString *tag;
  45. @property (nonatomic, assign) NSInteger isVip;
  46. @property (nonatomic, assign) double membershipDays;
  47. @property (nonatomic, assign) NSInteger degreeFlag;
  48. @property (nonatomic, assign) NSInteger teacherFlag;
  49. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  50. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  51. - (NSDictionary *)dictionaryRepresentation;
  52. @end