shop.js 307 B

123456789101112
  1. 'use strict';
  2. const { CrudService } = require('naf-framework-mongoose-free/lib/service');
  3. // 店铺表
  4. class ShopService extends CrudService {
  5. constructor(ctx) {
  6. super(ctx, 'shop');
  7. this.model = this.ctx.model.Shop;
  8. this.AdminModel = this.ctx.model.Admin;
  9. }
  10. }
  11. module.exports = ShopService;