73 lines
1.8 KiB
Objective-C
Executable File
73 lines
1.8 KiB
Objective-C
Executable File
//
|
||
// GDMineModel.h
|
||
// MoHuanXingYu
|
||
//
|
||
// Created by apple on 2020/9/16.
|
||
// Copyright © 2020 MoHuanXingYu. All rights reserved.
|
||
//
|
||
|
||
#import <Foundation/Foundation.h>
|
||
|
||
NS_ASSUME_NONNULL_BEGIN
|
||
|
||
@interface GDMineModel : NSObject
|
||
|
||
/*冻结金额*/
|
||
@property(nonatomic, copy) NSString *frozen_money;
|
||
/*巧鱼币*/
|
||
@property(nonatomic, copy) NSString *integral;
|
||
/*生日*/
|
||
@property(nonatomic, copy) NSString *birthday;
|
||
/*省*/
|
||
@property(nonatomic, copy) NSString *province;
|
||
/*余额*/
|
||
@property(nonatomic, copy) NSString *money;
|
||
/*签名*/
|
||
@property(nonatomic, copy) NSString *autograph;
|
||
/*国家*/
|
||
@property(nonatomic, copy) NSString *country;
|
||
/*性别*/
|
||
@property(nonatomic, copy) NSString *sex;
|
||
/*星座*/
|
||
@property(nonatomic, copy) NSString *constellation;
|
||
/*是否实名认证,1,实名;2,未实名*/
|
||
@property(nonatomic, copy) NSString *is_real;
|
||
/*城市*/
|
||
@property(nonatomic, copy) NSString *city;
|
||
/*粉丝数量*/
|
||
@property(nonatomic, copy) NSString *fans_num;
|
||
/*头像*/
|
||
@property(nonatomic, copy) NSString *head_pic;
|
||
/*token*/
|
||
@property(nonatomic, copy) NSString *login_token;
|
||
/*用户id*/
|
||
@property(nonatomic, copy) NSString *uid;
|
||
/*关注数量*/
|
||
@property(nonatomic, copy) NSString *follow_num;
|
||
/*是否关注*/
|
||
@property(nonatomic, copy) NSString *is_follow;
|
||
/*房间收益*/
|
||
@property(nonatomic, copy) NSString *room_profit;
|
||
/*靓号ID*/
|
||
@property(nonatomic, copy) NSString *special_uid;
|
||
/*昵称*/
|
||
@property(nonatomic, copy) NSString *nick_name;
|
||
/**/
|
||
@property(nonatomic, copy) NSString *base64_nick_name;
|
||
/*收藏的房间数量*/
|
||
@property(nonatomic, copy) NSString *collect_room_num;
|
||
/*是否有房间*/
|
||
@property(nonatomic, copy) NSString *rid;
|
||
/*手机号*/
|
||
@property(nonatomic, copy) NSString *user_name;
|
||
|
||
//邀请好友
|
||
@property(nonatomic, copy) NSString *reg_url;
|
||
|
||
//爱好
|
||
@property(nonatomic, copy) NSString *hobby;
|
||
|
||
@end
|
||
|
||
NS_ASSUME_NONNULL_END
|