Files
yuyin_ios/SweetParty/主类/Mine/装扮&商城/SPShopMallCell.h
2025-08-08 11:05:33 +08:00

27 lines
629 B
Objective-C
Executable File

//
// SPShopMallCell.h
// romantic
//
// Created by bj_szd on 2022/7/29.
// Copyright © 2022 romantic. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SPShopMallModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface SPShopMallCell : UICollectionViewCell
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
@property (weak, nonatomic) IBOutlet UIImageView *iconImgV;
@property (weak, nonatomic) IBOutlet UILabel *priceLab;
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
@property (nonatomic, strong) SPShopMallModel *model;
@end
NS_ASSUME_NONNULL_END