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