29 lines
724 B
Objective-C
Executable File
29 lines
724 B
Objective-C
Executable File
//
|
|
// SPGonghuiUserListCell.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/29.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SPGonghuiDetailListModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPGonghuiUserListCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
|
|
@property (weak, nonatomic) IBOutlet UIButton *huizhangBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *yichuBtn;
|
|
|
|
@property (nonatomic, copy) void(^onYichuBlock)(void);
|
|
|
|
@property (nonatomic, strong) SPGonghuiDetailListModel *model;
|
|
@property (weak, nonatomic) IBOutlet UILabel *hotValue;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|