cigs4/ym-schedule-task/src/main/java/com/cnbm/scheduletask/task/TestTask.java
2022-06-29 16:27:40 +08:00

22 lines
462 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.cnbm.scheduletask.task;
import lombok.extern.log4j.Log4j2;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;
/**
* @Author weihongyang
* @Date 2022/6/23 4:41 PM
* @Version 1.0
*/
@Log4j2
@Component("testTask")
public class TestTask implements ITask{
@Override
public void run(String params){
log.info("TestTask定时任务正在执行参数为{}", params);
}
}