// // QXFamilyMemberCell.h // QXLive // // Created by 启星 on 2025/11/26. // #import #import "QXFamilyModel.h" NS_ASSUME_NONNULL_BEGIN @interface QXFamilyMemberCell : UITableViewCell @property (weak, nonatomic) IBOutlet QXSeatHeaderView *headerView; @property (weak, nonatomic) IBOutlet UICollectionView *collectionView; @property (weak, nonatomic) IBOutlet UICollectionViewFlowLayout *flowLayout; @property (weak, nonatomic) IBOutlet UILabel *dayLabel; @property (weak, nonatomic) IBOutlet UILabel *nameLabel; @property (weak, nonatomic) IBOutlet UILabel *timesLabel; @property (weak, nonatomic) IBOutlet UIButton *priceBtn; @property (weak, nonatomic) IBOutlet UILabel *onlineLabel; @property (weak, nonatomic) IBOutlet UIButton *todayPriceBtn; @property (weak, nonatomic) IBOutlet UIButton *yestodayPriceBtn; @property (weak, nonatomic) IBOutlet UIButton *continueBtn; @property (strong, nonatomic) QXFamilyMemberModel *model; +(instancetype)cellWithTableView:(UITableView *)tableView; @end NS_ASSUME_NONNULL_END