| 12345678910111213141516171819202122232425262728 | 'use strict';/** * * * @author Mai * @date 2018/8/14 * @version */const audit = require('../const/audit');module.exports = app => {    class ChangeAuditList extends app.BaseService {        /**         * 构造函数         *         * @param {Object} ctx - egg全局变量         * @return {void}         */        constructor(ctx) {            super(ctx);            this.tableName = 'change_audit_list';        }    }    return ChangeAuditList;};
 |