feat:测试xxzJob

This commit is contained in:
Xiang
2026-01-15 16:50:03 +08:00
parent 429ff6fdfa
commit 15cefd3db6
7 changed files with 30 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
package com.xiang.app.modules.jntyzx.schedule;
import com.xiang.xmc.service.quartz.annotation.XxzJob;
import com.xiang.core.quartz.annotation.XxzJob;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;

View File

@@ -0,0 +1,19 @@
package com.xiang.app.schedule;
import com.xiang.core.quartz.annotation.XxzJob;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
/**
* @Author: xiang
* @Date: 2026-01-14 17:17
*/
@Slf4j
@Component
public class TestTask1 {
@XxzJob(name = "ts")
public void ts() {
log.info("111");
}
}