123456789101112131415161718192021222324252627282930313233343536 |
- 'use strict';
- const Subscription = require('egg').Subscription;
- class OrderCommission extends Subscription {
-
-
- static get schedule() {
- return {
-
-
-
- cron: '0 0 1 * * *',
- type: 'all',
- };
- }
-
- async subscribe() {
-
- }
- }
- module.exports = OrderCommission;
|