Files
featherVoice/QXLive/Mine(音域)/Model/QXSubsidyModel.h
2025-08-08 10:49:36 +08:00

49 lines
1.4 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// QXSubsidyModel.h
// IsLandVoice
//
// Created by 启星 on 2025/4/23.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class QXSubsidyDetailModel;
@interface QXSubsidyModel : NSObject
@property (nonatomic,strong) NSString *explain;
///上周流水
@property (nonatomic,strong) QXSubsidyDetailModel *lastweek;
/// 本周流水
@property (nonatomic,strong) QXSubsidyDetailModel *thisweek;
@end
@interface QXSubsidyDetailModel : NSObject
///累计流水
@property (nonatomic,strong) NSString *total_transaction;
///获得补贴
@property (nonatomic,strong) NSString *subsidy_amount;
/// 发放状态 0未发放1已发放
@property (nonatomic,assign) int status;
@end
/**
"room_id":214, //房间id
"start_time":"2025-04-07", //开始时间
"end_time":"2025-04-13", //结束时间
"total_transaction": 0, //累计流水
"subsidy_amount": 0, //获得补贴
"status": 0 //0未发放1已发放
*/
@interface QXSubsidyHistoryModel : NSObject
@property (nonatomic,strong) NSString *room_id;
@property (nonatomic,strong) NSString *start_time;
@property (nonatomic,strong) NSString *end_time;
@property (nonatomic,strong) NSString *total_transaction;
@property (nonatomic,strong) NSString *subsidy_amount;
@property (nonatomic,assign) int status;
@end
NS_ASSUME_NONNULL_END