'use strict'; const meta = require('./config/.collects.js'); const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose-free/lib/controller'); // ζˆ‘ηš„ζ”Άθ— class CollectsController extends Controller { constructor(ctx) { super(ctx); this.service = this.ctx.service.collects; } } module.exports = CrudController(CollectsController, meta);