13 lines
266 B
Java
13 lines
266 B
Java
|
|
package com.competition.common.config;
|
||
|
|
|
||
|
|
import org.springframework.context.annotation.Configuration;
|
||
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 定时任务配置
|
||
|
|
*/
|
||
|
|
@Configuration
|
||
|
|
@EnableScheduling
|
||
|
|
public class SchedulingConfig {
|
||
|
|
}
|