ASHomeNewInCellTableViewCell.h 393 B

12345678910111213141516171819202122
  1. //
  2. // ASHomeNewInCellTableViewCell.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/9.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ASHomeMainListModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASHomeNewInCellTableViewCell : UITableViewCell
  11. @property (nonatomic, copy) void(^productClick)(NSInteger i, ASProductBaseModel *m);
  12. //
  13. -(void)setData:(ASHomeMainListModel *)model;
  14. @end
  15. NS_ASSUME_NONNULL_END