27 lines
850 B
Objective-C
27 lines
850 B
Objective-C
//
|
|
// QXWithDrawRecordCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/7/12.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXCoinDetailModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXWithDrawRecordCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UILabel *realTitleLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *withDrawPriceLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *realPriceLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *feeLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *statusLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *personalFeeLabel;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *leftImageView;
|
|
|
|
@property (nonatomic,strong)QXWithDrawRecordModel *model;
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|