23 lines
633 B
Objective-C
23 lines
633 B
Objective-C
//
|
|
// QXFamilyTopCell.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/26.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "QXFamilyModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXFamilyTopCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet QXSeatHeaderView *headerView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *IdLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *priceLabel;
|
|
@property (weak, nonatomic) IBOutlet UIButton *timesBtn;
|
|
@property (strong, nonatomic) QXFamilyModel *model;
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|