123456789101112131415161718192021222324252627 |
- 'use strict';
- /**
- * 变更新增部位插入记录表
- *
- * @author Mai
- * @date
- * @version
- */
- module.exports = app => {
- class ChangePos extends app.BaseService {
- /**
- * 构造函数
- *
- * @param {Object} ctx - egg全局变量
- * @return {void}
- */
- constructor(ctx) {
- super(ctx);
- this.tableName = 'change_revise_log';
- }
- }
- return ChangePos;
- };
|