lipengwei
2019-10-10 56b891b2b50a493e805019147fabac796292c5d5
commit | author | age
d1f6ab 1 //
H 2 //  GHWLoginResult.h
3 //  GHWSdk
4 //
5 //  Created by wuyx on 15/5/6.
6 //  Copyright (c) 2015年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 /*!
11  @discussion 该类为登录结果
12  - - -
13  */
14 @interface WALoginResult : NSObject<NSCoding,NSCopying>
15 /*!
16  @abstract 状态码
17  */
18 @property(copy,nonatomic)NSString *code;
19 /*!
20  @abstract 结果描述
21  */
22 @property(copy,nonatomic)NSString *msg;
23 /*!
24  @abstract 用户Id,(注册)登录成功的时候返回
25  */
26 @property(copy,nonatomic)NSString *userId;
27 /*!
28  @abstract 在线token,(注册)登录成功的时候返回,如果传入的token未过期,直接返回原来的token,否则返回更新后的token
29  */
30 @property(copy,nonatomic)NSString *token;
31 /*!
32  @abstract 用户在第三方平台的Id,GUEST登录时 值与userId一致
33  */
34 @property(copy,nonatomic)NSString *pUserId;
35 /*!
36  @abstract 平台
37  */
38 @property(copy,nonatomic)NSString *platform;
39 /*!
40  @abstract 第三方平台token(当GUEST登录时为空,当Apple登录时,实际上是将extends转化为NSString)
41  */
42 @property(copy,nonatomic)NSString *pToken;
43 /*!
44  @abstract 当APPLE登录时有值,否则为空
45  */
46 @property(strong,nonatomic)NSDictionary *extends;//当APPLE登录时有值,否则为空
47 /**!
48  @abstract 是否绑定手机号
49  */
50 @property BOOL isBindMobile;
47f8fd 51 /**!
H 52  @abstract 是否绑定手机号 用户状态(有效用户返回):
53  * 0:已实名
54  * 1:未实名
55  */
56 @property NSInteger userStatus;
57 /**!
58  @abstract 登录实名验证:
59  * 0:不需要实名验证
60  * 1:提示用户实名验证,这里返回的token可作为登录及用户实名验证使用
61  * 2:强制用户实名验证,此时返回的仅是token是实名验证token
62  */
63 @property NSInteger loginRna;
64 /**!
65  @abstract 支付实名验证:
66  * 0:不需要实名验证
67  * 1:提示用户实名验证
68  * 2:强制用户实名验证
69  * 注:当有该字段返回时,token可作为登录及用户实名验证使用
70  */
71 @property NSInteger paymentRna;
72
45b3f1 73 /**!
H 74  @abstract 当前用户ID含义标识:
75  * 0:原账号
76  * 1:被绑账号
77  */
78 @property (strong,nonatomic) NSString *userFlag;
79 /**!
80  @abstract 是否被绑定用户
81  *
82  */
83 @property BOOL isBindUser;
84
d1f6ab 85 -(id)initWithPUserId:(NSString*)userId pToken:(NSString*)token platform:(NSString*)platform;
H 86 +(id)loginResultWithPUserId:(NSString*)userId pToken:(NSString*)token platform:(NSString*)platform;
87 @end