79 lines
2.1 KiB
Objective-C
79 lines
2.1 KiB
Objective-C
//
|
|
// 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
|