|
@@ -7,7 +7,7 @@ const moneyPlugin = require('naf-framework-mongoose-free/lib/model/type-money-pl
|
|
|
const lessonCoach = {
|
|
|
lesson_id: { type: String, required: false, zh: '课程id', ref: 'Lesson', getProp: [ 'title' ] }, //
|
|
|
school_id: { type: String, required: false, zh: '学校id', ref: 'School', getProp: [ 'name' ] }, //
|
|
|
- coach_id: { type: String, required: false, zh: '教练id', ref: 'Coach', getProp: [ 'name' ] }, //
|
|
|
+ coach_id: { type: String, required: false, zh: '教练id', ref: 'Coach', getProp: [ 'name', 'icon' ] }, //
|
|
|
is_sign: { type: String, required: false, default: '0', zh: '签到' }, // 0:未到;1:已签到
|
|
|
};
|
|
|
const schema = new Schema(lessonCoach, { toJSON: { getters: true, virtuals: true } });
|