lpw
2021-01-12 e198923baf7b4052babfe7b8ac673f38b8f750e7
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
27
dcdc07 28 +(WAAccount*)parserWithDict:(NSDictionary*)dict;
W 29 +(NSArray*)parserWithArray:(NSArray*)arr;
30 @end