// // ExpertCollectionViewCell.h // jitao // // Created by 罗云飞 on 2018/2/6. // Copyright © 2018年 罗云飞. All rights reserved. // #import #import "HomeExpertModel.h" @interface ExpertCollectionViewCell : UICollectionViewCell @property(copy,nonatomic)UIImageView *headimage;//头像 @property(copy,nonatomic)UILabel*name;//名字 @property(copy,nonatomic)UILabel*industry;//行业 @property(copy,nonatomic)UILabel*briefintroduction;//内容 @property(copy,nonatomic)UILabel*Negotiate;//洽谈 @property(copy,nonatomic)UILabel*appointment;//预约 @property(copy,nonatomic)UILabel *line3;// @property(copy,nonatomic)UILabel *line4;// @property(copy,nonatomic)UIButton *seemoreBT; - (void)assignment:(HomeExpertModel *)model; @end