// // HomeBigshotCollectCell.h // smartRhino // // Created by niuzhen on 2020/5/20. // Copyright © 2020 tederen. All rights reserved. // #import #import "HomeSubItemModel.h" NS_ASSUME_NONNULL_BEGIN @interface HomeBigshotCollectCell : UICollectionViewCell @property (weak, nonatomic) IBOutlet UIImageView *imagV; @property (weak, nonatomic) IBOutlet UILabel *titleL; @property (weak, nonatomic) IBOutlet UILabel *subTitleL; @property (weak, nonatomic) IBOutlet UIImageView *yanV; @property (weak, nonatomic) IBOutlet UILabel *countL; @property (weak, nonatomic) IBOutlet UILabel *timeL; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *yanContant; - (void)setDataModel:(HomeSubItemModel *)model; @end NS_ASSUME_NONNULL_END