PersonalCertificationModel.h 710 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // PersonalCertificationModel.h
  3. // ChinaTheoryNetwork
  4. //
  5. // Created by 张毅成 on 2019/1/29.
  6. // Copyright © 2019 张毅成. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PersonalCertificationModel : NSObject
  11. @property (strong, nonatomic, class, readonly) NSArray *arrayTitle;
  12. /**
  13. 真实姓名
  14. */
  15. @property (strong, nonatomic) NSString *realName;
  16. /**
  17. 身份证
  18. */
  19. @property (strong, nonatomic) NSString *idCard;
  20. /**
  21. 职称
  22. */
  23. @property (strong, nonatomic) NSString *workName;
  24. /**
  25. 工作单位
  26. */
  27. @property (strong, nonatomic) NSString *workSpace;
  28. /**
  29. 邮箱
  30. */
  31. @property (strong, nonatomic) NSString *email;
  32. @end
  33. NS_ASSUME_NONNULL_END