- 'use strict';
- const { CrudService } = require('naf-framework-mongoose/lib/service');
- // 轮播图
- class CarouselService extends CrudService {
- constructor(ctx) {
- super(ctx, 'carousel');
- this.model = this.ctx.model.Carousel;
- }
- }
- module.exports = CarouselService;
|