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