// // QXDirectListCell.h // IsLandVoice // // Created by 启星 on 2025/3/6. // #import #import "QXRoomModel.h" #import "QXDirectSetScaleView.h" #import "QXDirectDelegate.h" NS_ASSUME_NONNULL_BEGIN @interface QXDirectListCell : UITableViewCell @property (weak, nonatomic) IBOutlet UIView *bgView; @property (weak, nonatomic) IBOutlet UIImageView *headerImageView; @property (weak, nonatomic) IBOutlet UILabel *nameLabel; @property (weak, nonatomic) IBOutlet UILabel *scaleLabel; @property (weak, nonatomic) IBOutlet UILabel *priceLabel; @property (strong, nonatomic) QXRoomOnlineList *model; @property (strong, nonatomic) NSString *roomId; @property (weak, nonatomic)iddelegate; +(instancetype)cellWithTableView:(UITableView *)tableView; @end NS_ASSUME_NONNULL_END