check.js 218 B

12345678910
  1. 'use strict';
  2. module.exports = {
  3. schedule: {
  4. interval: '75s', // 1 分钟间隔
  5. type: 'all', // 指定所有的 worker 都需要执行
  6. },
  7. async task(ctx) {
  8. await ctx.service.customer.clear();
  9. },
  10. };