12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // PersonalCertificationModel.h
- // ChinaTheoryNetwork
- //
- // Created by 张毅成 on 2019/1/29.
- // Copyright © 2019 张毅成. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PersonalCertificationModel : NSObject
- @property (strong, nonatomic, class, readonly) NSArray *arrayTitle;
- /**
- 真实姓名
- */
- @property (strong, nonatomic) NSString *realName;
- /**
- 身份证
- */
- @property (strong, nonatomic) NSString *idCard;
- /**
- 职称
- */
- @property (strong, nonatomic) NSString *workName;
- /**
- 工作单位
- */
- @property (strong, nonatomic) NSString *workSpace;
- /**
- 邮箱
- */
- @property (strong, nonatomic) NSString *email;
- @end
- NS_ASSUME_NONNULL_END
|