Demandmodel.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // Demandmodel.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2017/12/19.
  6. // Copyright © 2017年 罗云飞. All rights reserved.
  7. //
  8. #import <JSONModel/JSONModel.h>
  9. @interface Demandmodel : JSONModel
  10. @property (nonatomic,copy) NSString<Optional> *name;//标题
  11. @property (nonatomic,copy) NSString<Optional> *ID;//成果ID
  12. @property (nonatomic,copy) NSString<Optional> *countInterest;//关注数
  13. @property (nonatomic,copy) NSString<Optional> *employerAddress;//地址
  14. @property (nonatomic,copy) NSString<Optional> *industryCategory1;//
  15. @property (nonatomic,copy) NSString<Optional> *industryCategory2;//
  16. @property (nonatomic,copy) NSString<Optional> *boutique;//是否精品
  17. @property (nonatomic,copy) NSString<Optional> *problemDes;//内容
  18. @property (nonatomic,copy) NSString<Optional> *urgentDays;//加急天数
  19. @property (nonatomic,copy) NSString<Optional> *urgentMoney;//加急报酬
  20. @property (nonatomic,copy) NSString<Optional> *demandType;//需求类型
  21. /*
  22. demandType=0 技术购买需求
  23. demandType=1 技术设备类需求
  24. demandType=2 技术方案型需求
  25. demandType=3 技术攻关型需求
  26. demandType=4 技术咨询型需求
  27. demandType=5 技术人才型需求
  28. */
  29. @end