liujie
2025-09-02 fa173d9bf7653ee926930e8a5091ceaee7caa7bd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.ruoyi.system.task.jobs;
 
import com.ruoyi.system.task.base.AbstractJob;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
 
/**
 * 发票定时任务
 * @author Administrator
 *
 */
public class StateProcessJob extends AbstractJob {
    
    public static final String name = "stateProcess_";
    
    @Override
    public void execute(JobExecutionContext context)
            throws JobExecutionException {
        try {
        }catch(Exception e){
            e.printStackTrace();
        }
    }
 
}