Files
yuyin_ios/SweetParty/主类/Mine/GongHui/SPGonghuiApplyListCell.h
2025-08-08 11:05:33 +08:00

27 lines
658 B
Objective-C
Executable File

//
// SPGonghuiApplyListCell.h
// SweetParty
//
// Created by bj_szd on 2022/7/4.
//
#import <UIKit/UIKit.h>
#import "SPGonghuiApplyModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface SPGonghuiApplyListCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
@property (weak, nonatomic) IBOutlet UIButton *agreeBtn;
@property (weak, nonatomic) IBOutlet UIButton *refuseBtn;
@property (weak, nonatomic) IBOutlet UILabel *statusLab;
@property (nonatomic, strong) SPGonghuiApplyModel *model;
@end
NS_ASSUME_NONNULL_END