RecommendedresultsCell.h 798 B

123456789101112131415161718192021222324252627
  1. //
  2. // RecommendedresultsCell.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 "HomedemandModel.h"
  10. @interface RecommendedresultsCell : UICollectionViewCell
  11. @property(copy,nonatomic)UIImageView *image;//专利类型图片
  12. @property(copy,nonatomic)UILabel *demandType;//需求类型
  13. @property(copy,nonatomic)UILabel *title;//标题
  14. @property(copy,nonatomic)UILabel *content;//内容
  15. @property(copy,nonatomic)UIImageView *boutiqueimage;//精品图片
  16. @property(copy,nonatomic)UILabel *line3;//
  17. @property(copy,nonatomic)UILabel *line4;//
  18. @property(copy,nonatomic)UIButton *seemoreBT;
  19. @property(copy,nonatomic)UILabel *applyapplication2;//悬赏加急
  20. - (void)assignment:(HomedemandModel *)model;
  21. @end