'use strict'; const { CrudService } = require('naf-framework-mongoose-free/lib/service'); // 购物表 class CartService extends CrudService { constructor(ctx) { super(ctx, 'cart'); this.model = this.ctx.model.Cart; } } module.exports = CartService;