'use strict'; module.exports = { schedule: { interval: '10s', // 间隔 type: 'all', // 指定所有的 worker 都需要执行 }, async task(ctx) { await ctx.service.dining.order.checkTimeOut(); }, };