38 lines
1.1 KiB
Objective-C
38 lines
1.1 KiB
Objective-C
//
|
|
// GiGaUser.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/8/15.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import "JSONModel.h"
|
|
|
|
@interface GiGaUser : JSONModel
|
|
|
|
@property(nonatomic,copy) NSString *userId;
|
|
|
|
@property(nonatomic,copy) NSString *areaId;
|
|
@property(nonatomic,copy) NSString *areaName;
|
|
@property(nonatomic,copy) NSString *birthday;
|
|
@property(nonatomic,copy) NSString *cityId;
|
|
@property(nonatomic,copy) NSString *cityName;
|
|
@property(nonatomic,copy) NSString *headImgUrl;
|
|
|
|
@property(nonatomic,copy) NSString *mobile;
|
|
@property(nonatomic,copy) NSString *mobileMask;
|
|
@property(nonatomic,assign) NSInteger mobileStatus;
|
|
@property(nonatomic,copy) NSString *mobileStatusName;
|
|
@property(nonatomic,copy) NSString *nickName;
|
|
@property(nonatomic,copy) NSString *occupationCode;
|
|
@property(nonatomic,copy) NSString *occupationName;
|
|
@property(nonatomic,copy) NSString *provinceId;
|
|
@property(nonatomic,copy) NSString *provinceName;
|
|
@property(nonatomic,assign) int sexCode;
|
|
@property(nonatomic,copy) NSString *sexName;
|
|
@property(nonatomic,copy) NSString *weixin;
|
|
|
|
@property(nonatomic) float minute;
|
|
|
|
@end
|