ifish/Ifish/models/ifishUserModel/UserModel.h

35 lines
1.1 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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