24 lines
468 B
C
24 lines
468 B
C
|
|
//
|
||
|
|
// DLJueweiItemCell.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/6/28.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "DLJueweiItemModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface DLJueweiItemCell : UICollectionViewCell
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *imgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *decLab;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) DLJueweiItemModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|