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