口袋版本的一折买

AccountModel.h 482B

1234567891011121314151617181920212223
  1. //
  2. // AccountModel.h
  3. // CommerceManage
  4. //
  5. // Created by 小花 on 2016/12/27.
  6. // Copyright © 2016年 vaic. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface AccountModel : NSObject <NSCoding>
  10. @property (nonatomic, strong) NSString *token;
  11. @property (nonatomic, strong) NSString *phone;
  12. @property (nonatomic, strong) NSString *unionid;
  13. @property (nonatomic, strong) NSString *openId;
  14. //+ (instancetype)AccountStatusWithDict: (NSDictionary *)dict;
  15. @end