|
@@ -3,7 +3,7 @@ const Schema = require('mongoose').Schema;
|
|
|
const moment = require('moment');
|
|
|
const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
|
|
|
const { ObjectId } = require('mongoose').Types;
|
|
|
-// 创新劵表
|
|
|
+// 高企申报表
|
|
|
const ticket = {
|
|
|
user_id: { type: ObjectId }, // 用户id
|
|
|
mechanism_id: { type: ObjectId }, // 中介机构id
|
|
@@ -11,11 +11,9 @@ const ticket = {
|
|
|
medium_material: { type: Array }, // 中介机构审核资料
|
|
|
contract: { type: Array }, // 合同
|
|
|
status: { type: String, default: '0' },
|
|
|
- // 0-资质审核;
|
|
|
- // 1-准备订单(企业填资料);-1-资质审查失败;
|
|
|
- // 2:-企业填写资料完成(中介审核)
|
|
|
- // 3-订单入库(中介机构,企业上传合同); -3 - 中介审核失败(重填信息)
|
|
|
- // 4-创新劵领取成功(服务机构审核成功)
|
|
|
+ // 0-初审;
|
|
|
+ // 1-初审通过(企业,中介上传合同);-1-初审失败;
|
|
|
+ // 2-高企申报成功;-2:高企申报失败
|
|
|
remark: { type: String },
|
|
|
create_time: { type: String, default: moment(new Date()).format('YYYY-MM-DD HH:mm:ss') },
|
|
|
};
|