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

23 lines
627 B
C
Raw Normal View History

2025-08-08 10:49:36 +08:00
//
// QXCornRecordCell.h
// QXLive
//
// Created by 启星 on 2025/5/27.
//
#import <UIKit/UIKit.h>
#import "QXCoinDetailModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface QXCornRecordCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *reasonLabel;
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
@property (weak, nonatomic) IBOutlet UILabel *priceLabel;
2025-12-01 18:42:49 +08:00
@property (weak, nonatomic) IBOutlet UIImageView *iconImageView;
2025-10-20 09:43:10 +08:00
@property (nonatomic,assign)BOOL isCoin;
2025-08-08 10:49:36 +08:00
@property (nonatomic,strong) QXCoinDetailModel *model;
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
NS_ASSUME_NONNULL_END