// // DemandCell.h // jitao // // Created by 罗云飞 on 2017/12/16. // Copyright © 2017年 罗云飞. All rights reserved. // #import #import "DemanddetailModel.h" @interface DemandCell : UITableViewCell @property(copy,nonatomic)UILabel *title;//标题 @property(copy,nonatomic)UILabel *technicaltype;//技术类型 @property(copy,nonatomic)UILabel *industry;//行业 @property(copy,nonatomic)UILabel *daynumber;//洽谈天数 @property(copy,nonatomic)UILabel *rewardamount;//悬赏金额 @property(copy,nonatomic)UILabel *maturity;//成熟度 @property(copy,nonatomic)UILabel *transactionmode;//交易方式 @property(copy,nonatomic)UILabel *price;//价格 @property(copy,nonatomic)UILabel *fieldapplication;//适用领域 @property(copy,nonatomic)UILabel *label;//标签 @property(copy,nonatomic)UILabel *place;//地点 @property(copy,nonatomic)UILabel *follow;//关注 @property(copy,nonatomic)UILabel *orderintention;//接单意向 @property(copy,nonatomic)UILabel *ordersnumber;//接单次数 @property(copy,nonatomic)UILabel *place1;//地点 @property(copy,nonatomic)UILabel *qiatan;//加急 - (void)assignment:(DemanddetailModel *)model; @end