23 lines
638 B
C
23 lines
638 B
C
|
|
//
|
||
|
|
// QXHeartBeatSpaceRecordCell.h
|
||
|
|
// QXLive
|
||
|
|
//
|
||
|
|
// Created by 启星 on 2025/11/22.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface QXHeartBeatSpaceRecordCell : UITableViewCell
|
||
|
|
@property (weak, nonatomic) IBOutlet QXSeatHeaderView *headerView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLabel;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *contentLabel;
|
||
|
|
@property (strong, nonatomic)QXUserHeartBeatSpaceLogModel *model;
|
||
|
|
@property (strong, nonatomic)NSString *userId;
|
||
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|