'use strict'; module.exports = app => { class ScheduleLedgerHistory extends app.BaseService { constructor(ctx) { super(ctx); this.tableName = 'schedule_ledger_history'; } } return ScheduleLedgerHistory; };