28 lines
694 B
Objective-C
Executable File
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
|