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