'use strict'; /** * * * @author Mai * @date * @version */ const payConst = require('../const/deal_pay'); const auditConst = require('../const/audit'); module.exports = app => { class ExtraPay extends app.BaseService { /** * 构造函数 * * @param {Object} ctx - egg全局变量 * @return {void} */ constructor(ctx) { super(ctx); this.tableName = 'extra_pay'; } async AddExtraPay() { } } return ExtraPay; };