25 lines
531 B
C
25 lines
531 B
C
|
|
//
|
||
|
|
// SPGiftMingxiCell.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2022/6/27.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "SPGiftMingxiModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface SPGiftMingxiCell : UITableViewCell
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftNameLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftPriceLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) SPGiftMingxiModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|