BusinessCollectionViewCell.h 442 B

1234567891011121314151617
  1. //
  2. // BusinessCollectionViewCell.h
  3. // IBOSSmini
  4. //
  5. // Created by guan hong hou on 2017/5/3.
  6. // Copyright © 2017年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BusinessModel.h"
  10. @interface BusinessCollectionViewCell : UICollectionViewCell
  11. @property (nonatomic,strong) UIImageView *businessImgView;
  12. @property (nonatomic,strong) UILabel *businessTitleLbl;
  13. - (void)setBusinessInfoModel:(BusinessModel *)model;
  14. @end