carousel.js 275 B

123456789101112
  1. 'use strict';
  2. const { CrudService } = require('naf-framework-mongoose/lib/service');
  3. // 轮播图
  4. class CarouselService extends CrudService {
  5. constructor(ctx) {
  6. super(ctx, 'carousel');
  7. this.model = this.ctx.model.Carousel;
  8. }
  9. }
  10. module.exports = CarouselService;