1234567891011121314151617181920212223 |
- 'use strict';
- const Schema = require('mongoose').Schema;
- const metaPlugin = require('naf-framework-mongoose-free/lib/model/meta-plugin');
- // 教练费明细
- const coachInBill = {
- lesson_id: { type: String, required: false, zh: '课程id' }, //
- type: { type: String, required: false, zh: '类型' }, // 0:公开课收入;1私教课收入;2提现
- school_id: { type: String, required: false, zh: '学校id', ref: 'School', getProp: [ 'name' ] }, //
- coach_id: { type: String, required: false, zh: '教练id', ref: 'Coach', getProp: [ 'name' ] }, //
- money: { type: Number, required: false, zh: '金额' }, //
- };
- const schema = new Schema(coachInBill, { toJSON: { virtuals: true } });
- schema.index({ id: 1 });
- schema.index({ 'meta.createdAt': 1 });
- schema.index({ school_id: 1 });
- schema.index({ coach_id: 1 });
- schema.plugin(metaPlugin);
- module.exports = app => {
- const { mongoose } = app;
- return mongoose.model('CoachInBill', schema, 'coachInBill');
- };
|