首次提交
This commit is contained in:
43
QXLive/Login(登录)/Model/QXLoginModel.h
Normal file
43
QXLive/Login(登录)/Model/QXLoginModel.h
Normal file
@@ -0,0 +1,43 @@
|
||||
//
|
||||
// QXLoginModel.h
|
||||
// QXLive
|
||||
//
|
||||
// Created by 启星 on 2025/5/19.
|
||||
//
|
||||
|
||||
#import "QXBaseModel.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@interface QXLoginModel : QXBaseModel
|
||||
/// 用户id
|
||||
@property (nonatomic,strong)NSString* user_id;
|
||||
/// 用户code
|
||||
@property (nonatomic,strong)NSString *user_code;
|
||||
/// 头像
|
||||
@property (nonatomic,strong)NSString *avatar;
|
||||
/// 昵称
|
||||
@property (nonatomic,strong)NSString *nickname;
|
||||
/// 性别 登录后默认为0 1男 2女
|
||||
@property (nonatomic,strong)NSString *sex;
|
||||
/// 手机号
|
||||
@property (nonatomic,strong)NSString *mobile;
|
||||
/// token
|
||||
@property (nonatomic,strong)NSString *token;
|
||||
/// 生日
|
||||
@property (nonatomic,strong)NSString *birthday;
|
||||
/// 腾讯im sign
|
||||
@property (nonatomic,strong)NSString *tencent_im;
|
||||
/// 签名
|
||||
@property (nonatomic,strong)NSString *profile;
|
||||
/// 是否实名 0 未实名 1已实名
|
||||
@property (nonatomic,assign)NSInteger auth;
|
||||
/// 装扮
|
||||
@property (nonatomic,strong)NSString *dress;
|
||||
/// 各种卡片
|
||||
@property (nonatomic,strong)NSArray *icon;
|
||||
@end
|
||||
|
||||
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user