Przeglądaj źródła

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

lrf 3 lat temu
rodzic
commit
77b6db241f
1 zmienionych plików z 3 dodań i 3 usunięć
  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 } });