首页数据对接

This commit is contained in:
liyuhua
2023-09-05 15:37:02 +08:00
parent 32d974eb12
commit 4e6769dee5
33 changed files with 726 additions and 93 deletions

View File

@@ -40,6 +40,28 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, copy) NSString *broadMsg;
///性别
@property (nonatomic,assign) GenderType gender;
//是否为小时榜top1
@property(nonatomic,assign) BOOL isHourTop1;
//是否为周榜top1
@property(nonatomic,assign) BOOL isWeekTop1;
//是否在麦位
@property(nonatomic,assign) BOOL inMic;
///是否在线
@property(nonatomic,assign) BOOL inOnline;
///签名
@property(nonatomic,copy) NSString *userDesc;
///语音
@property(nonatomic,copy) NSString *userVoice;
///语音时长
@property(nonatomic,copy) NSString *voiceDura;
///标签
@property(nonatomic,copy) NSArray *labels;
///生日
@property(nonatomic,assign) long birth;
///昵称
@property(nonatomic,copy) NSString *nick;
@end
@interface HomePlayMicUserModel : NSObject
@@ -51,6 +73,7 @@ NS_ASSUME_NONNULL_BEGIN
@property (nonatomic,copy) NSString *nick;
///用户的uid
@property (nonatomic,copy) NSString *uid;
@end
NS_ASSUME_NONNULL_END