123456789101112131415161718192021222324252627282930313233 |
- '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;
- };
|