12345678910111213141516171819202122232425262728 |
- 'use strict';
- /**
- * 用户管理业务类
- *
- * @author Mai
- * @date 2018/4/19
- * @version
- */
- module.exports = app => {
- class TemplateNode extends app.BaseService {
- /**
- * 构造函数
- *
- * @param {Object} ctx - egg全局context
- * @return {void}
- */
- constructor(ctx) {
- super(ctx);
- this.tableName = 'template_node';
- }
- }
- return TemplateNode;
- };
|