// // QXFamilyPriceRecordCell.h // QXLive // // Created by 启星 on 2025/11/26. // #import #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