瀏覽代碼

Merge branch 'master' of http://git.cc-lotus.info/new-live/server-patent

lrf 3 年之前
父節點
當前提交
77b6db241f
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      app/model/apply.js

+ 3 - 3
app/model/apply.js

@@ -14,9 +14,9 @@ const apply = {
   contact: { type: String, required: false }, // 技术联系人
   phone: { type: String, required: false }, // 联系电话
   email: { type: String, required: false }, // 电子邮箱
-  check_url: { type: String, required: false }, // 审查文件
-  apply_url: { type: String, required: false }, // 申请文件
-  questions: { type: String, required: false }, // 其他内容合集
+  check_url: { type: Array, required: false }, // 审查文件
+  apply_url: { type: Array, required: false }, // 申请文件
+  questions: { type: Object, required: false }, // 其他内容合集
   status: { type: String, required: false }, // 状态
 };
 const schema = new Schema(apply, { toJSON: { virtuals: true } });