2025-09-29 17:21:49 +08:00
|
|
|
|
//
|
|
|
|
|
|
// QXRoomHourRankModel.h
|
|
|
|
|
|
// QXLive
|
|
|
|
|
|
//
|
|
|
|
|
|
// Created by 启星 on 2025/9/29.
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
|
|
|
|
@interface QXRoomHourRankModel : NSObject
|
|
|
|
|
|
@property (nonatomic,strong)NSString *time_range;
|
|
|
|
|
|
@property (nonatomic,strong)NSArray *lists;
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@interface QXRoomHourRankSubModel : NSObject
|
|
|
|
|
|
@property (nonatomic,strong)NSString *room_id;
|
|
|
|
|
|
@property (nonatomic,strong)NSString *room_name;
|
|
|
|
|
|
@property (nonatomic,strong)NSString *label_id;
|
|
|
|
|
|
@property (nonatomic,strong)NSString *room_cover;
|
|
|
|
|
|
@property (nonatomic,strong)NSString *total_price;
|
|
|
|
|
|
@property (nonatomic,strong)NSString *label_icon;
|
|
|
|
|
|
@property (nonatomic,assign)NSInteger xlh_status;
|
2025-10-17 11:41:09 +08:00
|
|
|
|
/// 1有红包,=0 没有红包
|
|
|
|
|
|
@property (nonatomic,assign)NSInteger redpacket_status;
|
2025-09-29 17:21:49 +08:00
|
|
|
|
@end
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|