WorkFlowSearchItemCell.h 501 B

12345678910111213141516171819202122
  1. //
  2. // WorkFlowSearchItemCell.h
  3. // smartRhino
  4. //
  5. // Created by Android on 2019/12/17.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class LocationsModel;
  10. NS_ASSUME_NONNULL_BEGIN
  11. ///我的会议筛选项Cell
  12. @interface WorkFlowSearchItemCell : UICollectionViewCell
  13. @property (weak, nonatomic) IBOutlet UIButton *itemBtn;
  14. @property (copy, nonatomic) void(^selectedBlock)(LocationsModel *model);
  15. - (void)setData:(LocationsModel *)model;
  16. @end
  17. NS_ASSUME_NONNULL_END