DemandCell.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // DemandCell.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2017/12/16.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "DemanddetailModel.h"
  10. @interface DemandCell : UITableViewCell
  11. @property(copy,nonatomic)UILabel *title;//标题
  12. @property(copy,nonatomic)UILabel *technicaltype;//技术类型
  13. @property(copy,nonatomic)UILabel *industry;//行业
  14. @property(copy,nonatomic)UILabel *daynumber;//洽谈天数
  15. @property(copy,nonatomic)UILabel *rewardamount;//悬赏金额
  16. @property(copy,nonatomic)UILabel *maturity;//成熟度
  17. @property(copy,nonatomic)UILabel *transactionmode;//交易方式
  18. @property(copy,nonatomic)UILabel *price;//价格
  19. @property(copy,nonatomic)UILabel *fieldapplication;//适用领域
  20. @property(copy,nonatomic)UILabel *label;//标签
  21. @property(copy,nonatomic)UILabel *place;//地点
  22. @property(copy,nonatomic)UILabel *follow;//关注
  23. @property(copy,nonatomic)UILabel *orderintention;//接单意向
  24. @property(copy,nonatomic)UILabel *ordersnumber;//接单次数
  25. @property(copy,nonatomic)UILabel *place1;//地点
  26. @property(copy,nonatomic)UILabel *qiatan;//加急
  27. - (void)assignment:(DemanddetailModel *)model;
  28. @end