matchteam.js 398 B

12345678910111213
  1. 'use strict';
  2. const meta = require('./.matchteam.js');
  3. const Controller = require('egg').Controller;
  4. const { CrudController } = require('naf-framework-mongoose-free/lib/controller');
  5. // 参赛团队
  6. class MatchteamController extends Controller {
  7. constructor(ctx) {
  8. super(ctx);
  9. this.service = this.ctx.service.matchteam;
  10. }
  11. }
  12. module.exports = CrudController(MatchteamController, meta);