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

28 lines
694 B
Objective-C
Executable File

//
// SPGonghuiListCell.h
// SweetParty
//
// Created by bj_szd on 2022/6/29.
//
#import <UIKit/UIKit.h>
#import "SPGonghuiListModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface SPGonghuiListCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
@property (weak, nonatomic) IBOutlet UILabel *orderLab;
@property (weak, nonatomic) IBOutlet UIImageView *orderImgV;
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
@property (weak, nonatomic) IBOutlet UILabel *valueLab;
@property (weak, nonatomic) IBOutlet UILabel *num;
@property (nonatomic, strong) SPGonghuiListModel *model;
@end
NS_ASSUME_NONNULL_END