lpw
2021-04-06 27dcabd3548e77412b033c4f99414425b3cfdac3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
//  WASDKAccount.h
//  WASDKUI
//
//  Created by wuyx on 15/11/30.
//  Copyright © 2015年 GHW-T-01. All rights reserved.
//
 
#import <Foundation/Foundation.h>
/*!
 @discussion WAAccount 该类为账户类
 - - -
 */
@interface WAAccount : NSObject
/*!
 @abstract 第三方平台openId
 */
@property(nonatomic,copy)NSString* pUserId;//第三方平台openId
 
/*!
 @abstract 绑定平台标识 FACEBOOK、APPLE、WINGA
 */
@property(nonatomic,copy)NSString* platform;
 
@property (nonatomic, strong) NSString *mobile;//wa平台才有此字段
 
 
+(WAAccount*)parserWithDict:(NSDictionary*)dict;
+(NSArray*)parserWithArray:(NSArray*)arr;
@end