schedule_month.js 234 B

1234567891011
  1. 'use strict';
  2. module.exports = app => {
  3. class ScheduleMonth extends app.BaseService {
  4. constructor(ctx) {
  5. super(ctx);
  6. this.tableName = 'schedule_month';
  7. }
  8. }
  9. return ScheduleMonth;
  10. };