| 12345678910111213141516171819202122232425262728 | 'use strict';/** * * * @author Mai * @date * @version */module.exports = app => {    class BudgetYu extends app.BaseBudgetService {        /**         * 构造函数         *         * @param {Object} ctx - egg全局变量         * @param {String} tableName - 表名         * @return {void}         */        constructor(ctx) {            super(ctx, { keyPre: 'budget_yu_maxLid:' });            this.tableName = 'budget_yu';        }    }    return BudgetYu;};
 |