Files
featherVoice/QXLive/Mine(音域)/View/钱包/QXWithDrawRecordCell.h

27 lines
850 B
C
Raw Normal View History

2025-08-08 10:49:36 +08:00
//
// QXWithDrawRecordCell.h
// QXLive
//
// Created by 启星 on 2025/7/12.
//
#import <UIKit/UIKit.h>
#import "QXCoinDetailModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface QXWithDrawRecordCell : UITableViewCell
2025-10-20 09:43:10 +08:00
@property (weak, nonatomic) IBOutlet UILabel *realTitleLabel;
2025-08-08 10:49:36 +08:00
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
2025-10-20 09:43:10 +08:00
@property (weak, nonatomic) IBOutlet UILabel *withDrawPriceLabel;
@property (weak, nonatomic) IBOutlet UILabel *realPriceLabel;
@property (weak, nonatomic) IBOutlet UILabel *feeLabel;
2025-08-08 10:49:36 +08:00
@property (weak, nonatomic) IBOutlet UILabel *statusLabel;
2025-10-20 09:43:10 +08:00
@property (weak, nonatomic) IBOutlet UILabel *personalFeeLabel;
@property (weak, nonatomic) IBOutlet UIImageView *leftImageView;
2025-08-08 10:49:36 +08:00
@property (nonatomic,strong)QXWithDrawRecordModel *model;
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
NS_ASSUME_NONNULL_END