'use strict'; // const _ = require('lodash'); const meta = require('./.zhwldriver.js'); const Controller = require('egg').Controller; const { CrudController } = require('naf-framework-mongoose/lib/controller'); // 司机表 class ZhwldriverController extends Controller { constructor(ctx) { super(ctx); this.service = this.ctx.service.zhwldriver; } } module.exports = CrudController(ZhwldriverController, meta);