1234567891011121314151617181920212223242526 |
- 'use strict';
- /**
- * 不参与调差-清单关联表 数据模型
- *
- * @author Mai
- * @date 2018/8/13
- * @version
- */
- module.exports = app => {
- class MaterialListNotJoin extends app.BaseService {
- /**
- * 构造函数
- *
- * @param {Object} ctx - egg全局变量
- * @return {void}
- */
- constructor(ctx) {
- super(ctx);
- this.tableName = 'material_list_notjoin';
- }
- }
- return MaterialListNotJoin;
- };
|