qushaowei
2025-06-17 68b6b248be403bfd684472a4a4876e5d35101e71
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.jeecg.modules.eam.job;
 
import org.quartz.Job;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
 
/**
 * @author lnl
 */
public class TechnologyQuanlifyAlertJob  implements Job {
    @Override
    public void execute(JobExecutionContext context) throws JobExecutionException {
 
    }
}