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

25 lines
531 B
Objective-C
Executable File

//
// 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