Files
yuyin_ios/SweetParty/主类/音悦新增/房间补贴/YYSubsidySetCell.h

28 lines
701 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// YYSubsidySetCell.h
// SweetParty
//
// Created by bj_szd on 2023/12/25.
//
#import <UIKit/UIKit.h>
#import "YYSubsidySetModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface YYSubsidySetCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
@property (weak, nonatomic) IBOutlet UILabel *valueLab;
@property (weak, nonatomic) IBOutlet UILabel *fenpeiLab;
@property (weak, nonatomic) IBOutlet UIButton *deleteBtn;
@property (weak, nonatomic) IBOutlet UIButton *settingBtn;
@property(nonatomic, strong) YYSubsidySetModel *model;
@end
NS_ASSUME_NONNULL_END