|
@@ -10,6 +10,8 @@ const StudentSchema = {
|
|
|
gender: { type: String, required: false, maxLength: 200 },
|
|
|
nation: { type: String, required: false, maxLength: 200 },
|
|
|
school_name: { type: String, required: false, maxLength: 200 },
|
|
|
+ schoolid: { type: String, required: false, maxLength: 200 },
|
|
|
+ faculty: { type: String, required: false, maxLength: 200 },
|
|
|
major: { type: String, required: false, maxLength: 200 },
|
|
|
entry_year: { type: String, required: false, maxLength: 200 },
|
|
|
finish_year: { type: String, required: false, maxLength: 200 },
|
|
@@ -21,12 +23,14 @@ const StudentSchema = {
|
|
|
family_is_hard: { type: String, required: false, maxLength: 200 },
|
|
|
have_grant: { type: String, required: false, maxLength: 200 },
|
|
|
job: { type: String, required: false, maxLength: 200 },
|
|
|
- termid: { type: String, required: false, maxLength: 200 },
|
|
|
- batchid: { type: String, required: false, maxLength: 200 },
|
|
|
- classid: { type: String, required: false, maxLength: 200 },
|
|
|
+ termid: { type: String, required: false, maxLength: 200 },
|
|
|
+ batchid: { type: String, required: false, maxLength: 200 },
|
|
|
+ classid: { type: String, required: false, maxLength: 200 },
|
|
|
bedroomid: { type: String, required: false, maxLength: 200 },
|
|
|
bedroom: { type: String, required: false, maxLength: 200 },
|
|
|
is_fine: { type: String, required: false, maxLength: 200 },
|
|
|
+ selfscore: { type: String, required: false, maxLength: 200 },
|
|
|
+ score: { type: String, required: false, maxLength: 200 },
|
|
|
}
|
|
|
;
|
|
|
|