'use strict'; const { CrudService } = require('naf-framework-mongoose-free/lib/service'); // 桌台表 class TableService extends CrudService { constructor(ctx) { super(ctx, 'table'); this.model = this.ctx.model.Table; } } module.exports = TableService;