新增超时+自动完成订单提现操作

This commit is contained in:
kuang.yifei@iwhalecloud.com 2022-07-19 09:56:27 +08:00
parent 248c4d5ee3
commit 42129f215f
2 changed files with 32 additions and 0 deletions

View File

@ -35,6 +35,16 @@
<artifactId>ghy-common</artifactId>
</dependency>
<dependency>
<groupId>com.ghy</groupId>
<artifactId>ghy-order</artifactId>
</dependency>
<dependency>
<groupId>com.ghy</groupId>
<artifactId>ghy-payment</artifactId>
</dependency>
</dependencies>
</project>

View File

@ -0,0 +1,22 @@
package com.ghy.quartz.task;
import org.springframework.stereotype.Component;
@Component("orderTask")
public class OrderTask {
/**
* 超时状态刷新
* */
public void overTimeOrder(){
}
/**
* 自动确认完成订单
* */
public void finishOrder(){
}
}