AchievementsdetailCell.h 1.0 KB

1234567891011121314151617181920212223242526272829
  1. //
  2. // AchievementsdetailCell.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 "ResultsDetailsModel.h"
  10. @interface AchievementsdetailCell : UITableViewCell
  11. @property(copy,nonatomic)UILabel *title;//标题
  12. @property(copy,nonatomic)UILabel *technicaltype;//技术类型
  13. @property(copy,nonatomic)UILabel *industry;//行业
  14. @property(copy,nonatomic)UILabel *maturity;//成熟度
  15. @property(copy,nonatomic)UILabel *transactionmode;//交易方式
  16. @property(copy,nonatomic)UILabel *price;//价格
  17. @property(copy,nonatomic)UILabel *fieldapplication;//适用领域
  18. @property(copy,nonatomic)UILabel *label;//标签
  19. @property(copy,nonatomic)UILabel *place;//地点
  20. @property(copy,nonatomic)UILabel *follow;//关注
  21. @property(copy,nonatomic)UILabel *orderintention;//接单意向
  22. @property(copy,nonatomic)UILabel *ordersnumber;//接单次数
  23. @property(copy,nonatomic)UILabel *place1;//地点
  24. - (void)assignment:(ResultsDetailsModel *)model;
  25. @end