소스 검색

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 } });