49 lines
1.4 KiB
Objective-C
49 lines
1.4 KiB
Objective-C
//
|
||
// 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
|
||
|