25 lines
609 B
Java
25 lines
609 B
Java
|
|
package com.xinelu.quartz.service;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @Description 支付定时任务业务层
|
|||
|
|
* @Author 纪寒
|
|||
|
|
* @Date 2022-10-21 15:03:05
|
|||
|
|
* @Version 1.0
|
|||
|
|
*/
|
|||
|
|
public interface PaymentInfoTaskService {
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 自动关闭商品订单24小时与预约订单2小时未支付的订单信息,每10分钟执行一次
|
|||
|
|
*
|
|||
|
|
* @throws Exception 异常信息
|
|||
|
|
*/
|
|||
|
|
void automaticOrderTask() throws Exception;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 自动修改未支付的订单状态,每10分钟执行一次
|
|||
|
|
*
|
|||
|
|
* @throws Exception 异常信息
|
|||
|
|
*/
|
|||
|
|
void automaticUpdateOrderStatusTask() throws Exception;
|
|||
|
|
}
|