|
@@ -6,6 +6,7 @@ const metaPlugin = require('naf-framework-mongoose/lib/model/meta-plugin');
|
|
|
const SchoolSchema = {
|
|
|
code: { type: String, required: false, maxLength: 200 }, // 学校代码
|
|
|
name: { type: String, required: false, maxLength: 500 }, // 学校名称
|
|
|
+ shortname: { type: String, required: false, maxLength: 500 }, // 学校简称
|
|
|
logourl: { type: String, required: false, maxLength: 500 }, // logo路径
|
|
|
level: { type: String, required: false, maxLength: 500 }, // 高校层次
|
|
|
address: { type: String, required: false, maxLength: 500 }, // 高校地址
|