1234567891011121314151617181920212223 |
- //
- // AccountModel.h
- // CommerceManage
- //
- // Created by 小花 on 2016/12/27.
- // Copyright © 2016年 vaic. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface AccountModel : NSObject <NSCoding>
- @property (nonatomic, strong) NSString *token;
- @property (nonatomic, strong) NSString *phone;
- @property (nonatomic, strong) NSString *unionid;
- @property (nonatomic, strong) NSString *openId;
- //+ (instancetype)AccountStatusWithDict: (NSDictionary *)dict;
- @end
|