hank
2018-11-13 99a8fed0467dd5a4b5e3316591d91f0cea9990ff
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
19 /*!
20  @abstract 绑定平台标识 FACEBOOK、APPLE、WINGA
21  */
22 @property(nonatomic,copy)NSString* platform;
23 +(WAAccount*)parserWithDict:(NSDictionary*)dict;
24 +(NSArray*)parserWithArray:(NSArray*)arr;
25 @end