27 lines
658 B
Objective-C
Executable File
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
|