Initial commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
//
|
||||
// UserModel.h
|
||||
// Ifish
|
||||
//
|
||||
// Created by imac on 15/9/27.
|
||||
// Copyright © 2015年 imac. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface UserModel : NSObject
|
||||
|
||||
@property(nonatomic,copy)NSString*phoneNumber;
|
||||
@property(nonatomic,strong)NSNumber*userId;
|
||||
@property(nonatomic,copy)NSString*nickName;
|
||||
@property(nonatomic,copy)NSString*userSex;
|
||||
@property(nonatomic,copy)NSString*signature;//用户签名
|
||||
@property(nonatomic,copy)NSString*userImg;
|
||||
@property(nonatomic,copy) NSString *P2PVerifyCode1;
|
||||
@property(nonatomic,copy) NSString *P2PVerifyCode2;
|
||||
@property(nonatomic,copy) NSString *gwellUserID;
|
||||
//商铺Id
|
||||
@property(nonatomic,copy) NSString *shopsUserId;
|
||||
//用户类型 1 商家用户 0 普通用户
|
||||
@property(nonatomic,copy) NSString *userType;
|
||||
//云信token
|
||||
@property(nonatomic,copy) NSString *neteaseToken;
|
||||
//v4.2 后已去字段
|
||||
//@property(nonatomic,copy)NSString*updateTime;//用户信息最后一次更新时间
|
||||
//@property(nonatomic,strong)NSNumber*timestamp;//服务器时间戳,用于APP内置时钟
|
||||
//@property(nonatomic,copy)NSString*token;
|
||||
-(instancetype)initWithDict:(NSDictionary *)dict;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user