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