commit | author | age
|
28ea02
|
1 |
// |
L |
2 |
// WACertificationInfo.h |
|
3 |
// WASdkIntf |
|
4 |
// |
|
5 |
// Created by LPW on 2019/12/30. |
|
6 |
// Copyright © 2019 GHW-T-01. All rights reserved. |
|
7 |
// 查询用户实名信息返回model |
|
8 |
|
|
9 |
#import <Foundation/Foundation.h> |
|
10 |
|
|
11 |
NS_ASSUME_NONNULL_BEGIN |
|
12 |
|
|
13 |
@interface WACertificationInfo : NSObject |
|
14 |
/*用户实名认证状态 |
|
15 |
* -1 未开启 |
|
16 |
* 0 已实名 |
|
17 |
* 1 未实名 |
27dcab
|
18 |
* 2 已实名-未成年() |
L |
19 |
* 3 认证中(2.3.0增加) |
|
20 |
|
28ea02
|
21 |
*/ |
L |
22 |
@property NSInteger userRealNameStatus; |
|
23 |
|
|
24 |
|
|
25 |
/*用户实名认证状态 |
|
26 |
* -1 未开启实名认证 或者 未实名 |
|
27 |
*/ |
|
28 |
@property NSInteger age; |
|
29 |
|
|
30 |
|
|
31 |
@end |
|
32 |
|
|
33 |
NS_ASSUME_NONNULL_END |