patentearly.js 320 B

123456789101112
  1. 'use strict';
  2. module.exports = {
  3. schedule: {
  4. // interval: '30s', // 1 分钟间隔
  5. cron: '0 0 23 * * *', // 每天晚上十一点
  6. // cron: '5 * * * * ?', // 30s
  7. type: 'worker', // 指定所有的 worker 都需要执行
  8. },
  9. async task(ctx) {
  10. ctx.service.patent.patentearly.needWarning();
  11. },
  12. };