lrf il y a 2 ans
Parent
commit
a4413b7b58
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      app/model/business/lessonCoach.js

+ 1 - 1
app/model/business/lessonCoach.js

@@ -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 } });