提交
This commit is contained in:
78
QXLive/Room(房间)/Model/QXUserSongListModel.h
Normal file
78
QXLive/Room(房间)/Model/QXUserSongListModel.h
Normal file
@@ -0,0 +1,78 @@
|
||||
//
|
||||
// QXUserSongListModel.h
|
||||
// QXLive
|
||||
//
|
||||
// Created by 启星 on 2025/11/13.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
/**
|
||||
"id": "string",
|
||||
"user_id": "string",
|
||||
"song_name": "string",
|
||||
"gift_id": "string",
|
||||
"gift_num": "string",
|
||||
"createtime": "string",
|
||||
"gift_name": "string",
|
||||
"gift_price": "string",
|
||||
"base_image": "string",
|
||||
"nickname": "string"
|
||||
*/
|
||||
@interface QXUserSongListModel : NSObject
|
||||
/// 歌曲id
|
||||
@property (nonatomic,strong)NSString *id;
|
||||
/// 歌手id
|
||||
@property (nonatomic,strong)NSString *singer_user_id;
|
||||
/// 歌曲名称
|
||||
@property (nonatomic,strong)NSString *song_name;
|
||||
/// 礼物id
|
||||
@property (nonatomic,strong)NSString *gift_id;
|
||||
/// 礼物数量
|
||||
@property (nonatomic,strong)NSString *gift_num;
|
||||
/// 添加时间
|
||||
@property (nonatomic,strong)NSString *createtime;
|
||||
/// 礼物名称
|
||||
@property (nonatomic,strong)NSString *gift_name;
|
||||
/// 礼物价值
|
||||
@property (nonatomic,strong)NSString *gift_price;
|
||||
/// 礼物图片
|
||||
@property (nonatomic,strong)NSString *base_image;
|
||||
/// 用户昵称
|
||||
@property (nonatomic,strong)NSString *singer_nickname;
|
||||
/// 用户昵称
|
||||
@property (nonatomic,strong)NSString *singer_avatar;
|
||||
/// 用户昵称
|
||||
@property (nonatomic,strong)NSString *singer_dress;
|
||||
/// 用户昵称
|
||||
@property (nonatomic,strong)NSString *singer_mic_cycle;
|
||||
/// 歌手id
|
||||
@property (nonatomic,strong)NSString *boss_user_id;
|
||||
/// 用户昵称
|
||||
@property (nonatomic,strong)NSString *boss_dress;
|
||||
/// 用户昵称
|
||||
@property (nonatomic,strong)NSString *boss_mic_cycle;
|
||||
/// 用户昵称
|
||||
@property (nonatomic,strong)NSString *boss_nickname;
|
||||
/// 用户昵称
|
||||
@property (nonatomic,strong)NSString *boss_avatar;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
@interface QXUserSongListCount : NSObject
|
||||
/// 添加时间
|
||||
@property (nonatomic,strong)NSString *total;
|
||||
/// 已点
|
||||
@property (nonatomic,strong)NSString *already;
|
||||
/// 礼物名称
|
||||
@property (nonatomic,strong)NSString *today;
|
||||
/// 礼物价值
|
||||
@property (nonatomic,strong)NSString *yesterday;
|
||||
/// 礼物图片
|
||||
@property (nonatomic,strong)NSString *week;
|
||||
/// 用户昵称
|
||||
@property (nonatomic,strong)NSString *month;
|
||||
@end
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user