'use strict'; const _ = require('lodash'); module.exports = options => { return async function schedule(ctx, next) { await next(); // 进入处理修改逻辑 const id = ctx.params.id; await ctx.service.schedule.checkNeedNext(id); }; };