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