1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.xcong.excoin.quartz.job;
|
| import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
| import org.springframework.stereotype.Component;
|
| /**
| * 归集定时任务
| *
| * @author wzy
| * @date 2020-07-02
| **/
|
| @Component
| @ConditionalOnProperty(prefix = "app", name = "block-job", havingValue = "true")
| public class NotionalPoolingJob {
| }
|
|