'use strict'; /** * * * @author Mai * @date * @version */ module.exports = app => { class TenderIndex extends app.BaseService { /** * 构造函数 * * @param {Object} ctx - egg全局context * @return {void} */ constructor(ctx) { super(ctx); this.tableName = 'tender_index'; } }; return TenderIndex; };