lpw
2024-07-22 2a54d46accc194e2f3a076706c3f06e9ffd84d15
commit | author | age
dcdc07 1 //
W 2 //  WASDKAccount.h
3 //  WASDKUI
4 //
5 //  Created by wuyx on 15/11/30.
6 //  Copyright © 2015年 GHW-T-01. All rights reserved.
7 //
8
9 #import <Foundation/Foundation.h>
10 /*!
11  @discussion WAAccount 该类为账户类
12  - - -
13  */
14 @interface WAAccount : NSObject
15 /*!
16  @abstract 第三方平台openId
17  */
18 @property(nonatomic,copy)NSString* pUserId;//第三方平台openId
1ac090 19
dcdc07 20 /*!
W 21  @abstract 绑定平台标识 FACEBOOK、APPLE、WINGA
22  */
23 @property(nonatomic,copy)NSString* platform;
1ac090 24
L 25 @property (nonatomic, strong) NSString *mobile;//wa平台才有此字段
26
d814a6 27 @property (nonatomic,strong) NSString * email;//WA平台且已绑定邮箱时返回 20230703  绑定帐号列表 V4(增加邮箱返回)
L 28
1ac090 29
dcdc07 30 +(WAAccount*)parserWithDict:(NSDictionary*)dict;
W 31 +(NSArray*)parserWithArray:(NSArray*)arr;
32 @end