| 123456789101112131415161718192021222324252627 |
- //
- // RecommendedresultsCell.h
- // jitao
- //
- // Created by 罗云飞 on 2018/2/6.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomedemandModel.h"
- @interface RecommendedresultsCell : UICollectionViewCell
- @property(copy,nonatomic)UIImageView *image;//专利类型图片
- @property(copy,nonatomic)UILabel *demandType;//需求类型
- @property(copy,nonatomic)UILabel *title;//标题
- @property(copy,nonatomic)UILabel *content;//内容
- @property(copy,nonatomic)UIImageView *boutiqueimage;//精品图片
- @property(copy,nonatomic)UILabel *line3;//
- @property(copy,nonatomic)UILabel *line4;//
- @property(copy,nonatomic)UIButton *seemoreBT;
- @property(copy,nonatomic)UILabel *applyapplication2;//悬赏加急
- - (void)assignment:(HomedemandModel *)model;
- @end
|