Files
featherVoice/QXLive/Mine(音域)/View/家族/QXFamilyPriceRecordCell.h
2025-11-28 22:43:06 +08:00

23 lines
653 B
Objective-C

//
// QXFamilyPriceRecordCell.h
// QXLive
//
// Created by 启星 on 2025/11/26.
//
#import <UIKit/UIKit.h>
#import "QXFamilyModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface QXFamilyPriceRecordCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
@property (weak, nonatomic) IBOutlet UILabel *giftLabel;
@property (weak, nonatomic) IBOutlet UILabel *giftPriceLabel;
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
@property (weak, nonatomic) IBOutlet UILabel *moneyLabel;
@property (strong, nonatomic) QXFamilyEarningModel *model;
+(instancetype)cellWithTableView:(UITableView *)tableView;
@end
NS_ASSUME_NONNULL_END