reloaded hace 4 años
padre
commit
6434eef15f
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      app/model/student.js

+ 3 - 0
app/model/student.js

@@ -13,6 +13,8 @@ const StudentSchema = {
   schid: { type: String, required: false, maxLength: 200, zh: '学校id' }, // 学校id
   faculty: { type: String, required: false, maxLength: 200, zh: '院系' }, // 院系
   major: { type: String, required: false, maxLength: 200, zh: '专业' }, // 专业
+  edua_level: { type: String, required: false, maxLength: 200, zh: '学历层次' }, // 学历层次
+  edua_system: { type: String, required: false, maxLength: 200, zh: '学制' }, // 学制
   entry_year: { type: String, required: false, maxLength: 200, zh: '入学年份' }, // 入学年份
   finish_year: { type: String, required: false, maxLength: 200, zh: '毕业年份' }, // 毕业年份
   school_job: { type: String, required: false, maxLength: 200, zh: '在校担任何种职务' }, // 在校担任何种职务
@@ -33,6 +35,7 @@ const StudentSchema = {
   is_fine: { type: String, required: false, maxLength: 200, default: '0', zh: '是否优秀' }, // 是否优秀,0-否,1-是,2-无资格
   selfscore: { type: String, required: false, maxLength: 200, zh: '个人分' }, // 个人分
   score: { type: String, required: false, maxLength: 200, zh: '总分' }, // 总分
+  diy: { type: { Object }, required: false, zh: '自定义' }, // 自定义
 };