25 lines
539 B
Objective-C
Executable File
25 lines
539 B
Objective-C
Executable File
//
|
|
// SPGonghuiRoomListCell.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/29.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SPGonghuiDetailListModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPGonghuiRoomListCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *hotLab;
|
|
|
|
@property (nonatomic, strong) SPGonghuiDetailListModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|