ExpertCollectionViewCell.h 761 B

123456789101112131415161718192021222324
  1. //
  2. // ExpertCollectionViewCell.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2018/2/6.
  6. // Copyright © 2018年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeExpertModel.h"
  10. @interface ExpertCollectionViewCell : UICollectionViewCell
  11. @property(copy,nonatomic)UIImageView *headimage;//头像
  12. @property(copy,nonatomic)UILabel*name;//名字
  13. @property(copy,nonatomic)UILabel*industry;//行业
  14. @property(copy,nonatomic)UILabel*briefintroduction;//内容
  15. @property(copy,nonatomic)UILabel*Negotiate;//洽谈
  16. @property(copy,nonatomic)UILabel*appointment;//预约
  17. @property(copy,nonatomic)UILabel *line3;//
  18. @property(copy,nonatomic)UILabel *line4;//
  19. @property(copy,nonatomic)UIButton *seemoreBT;
  20. - (void)assignment:(HomeExpertModel *)model;
  21. @end