| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // Demandmodel.h
- // jitao
- //
- // Created by 罗云飞 on 2017/12/19.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <JSONModel/JSONModel.h>
- @interface Demandmodel : JSONModel
- @property (nonatomic,copy) NSString<Optional> *name;//标题
- @property (nonatomic,copy) NSString<Optional> *ID;//成果ID
- @property (nonatomic,copy) NSString<Optional> *countInterest;//关注数
- @property (nonatomic,copy) NSString<Optional> *employerAddress;//地址
- @property (nonatomic,copy) NSString<Optional> *industryCategory1;//
- @property (nonatomic,copy) NSString<Optional> *industryCategory2;//
- @property (nonatomic,copy) NSString<Optional> *boutique;//是否精品
- @property (nonatomic,copy) NSString<Optional> *problemDes;//内容
- @property (nonatomic,copy) NSString<Optional> *urgentDays;//加急天数
- @property (nonatomic,copy) NSString<Optional> *urgentMoney;//加急报酬
- @property (nonatomic,copy) NSString<Optional> *demandType;//需求类型
- /*
- demandType=0 技术购买需求
- demandType=1 技术设备类需求
- demandType=2 技术方案型需求
- demandType=3 技术攻关型需求
- demandType=4 技术咨询型需求
- demandType=5 技术人才型需求
- */
- @end
|