|
@@ -4,11 +4,11 @@ const metaPlugin = require('naf-framework-mongoose-free/lib/model/meta-plugin');
|
|
|
|
|
|
// 学员与教练关系表
|
|
|
const relationStudentCoach = {
|
|
|
- student_id: { type: String, required: true, zh: '学生id', ref: 'Student', getProp: [ 'name' ] }, //
|
|
|
- coach_id: { type: String, required: true, zh: '教练id', ref: 'Coach', getProp: [ 'icon', 'name', 'phone', 'age', 'gender', 'level', 'honor' ] }, //
|
|
|
- school_id: { type: String, required: true, zh: '学校id', ref: 'School', getProp: [ 'name', 'phone' ] }, //
|
|
|
+ student_id: { type: String, required: true, zh: '学生id', ref: 'Student', getProp: ['name'] }, //
|
|
|
+ coach_id: { type: String, required: true, zh: '教练id', ref: 'Coach', getProp: ['icon', 'name', 'phone', 'age', 'gender', 'level', 'honor'] }, //
|
|
|
+ school_id: { type: String, required: true, zh: '学校id', ref: 'School', getProp: ['name', 'phone'] }, //
|
|
|
doc: { type: Object, required: false, zh: '档案' }, //
|
|
|
- config: { type: Object, required: false, zh: '设置' }, //
|
|
|
+ config: { type: Object, required: false, zh: '设置' }, // 打折方式 discount_type:fixed 固定;subtract 减; discount折 ;number
|
|
|
};
|
|
|
const schema = new Schema(relationStudentCoach, { toJSON: { virtuals: true } });
|
|
|
schema.index({ id: 1 });
|