lpw
2021-04-06 27dcabd3548e77412b033c4f99414425b3cfdac3
commit | author | age
d1f6ab 1 //
H 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
b11815 19
d1f6ab 20 /*!
H 21  @abstract 绑定平台标识 FACEBOOK、APPLE、WINGA
22  */
23 @property(nonatomic,copy)NSString* platform;
b11815 24
L 25 @property (nonatomic, strong) NSString *mobile;//wa平台才有此字段
26
27
d1f6ab 28 +(WAAccount*)parserWithDict:(NSDictionary*)dict;
H 29 +(NSArray*)parserWithArray:(NSArray*)arr;
30 @end