fix: 攀枝花东区-缴费分支代码处理
This commit is contained in:
-32
@@ -1,32 +0,0 @@
|
||||
package com.yida.data.job.task;
|
||||
|
||||
import com.yida.data.device.feign.consume.RemoteConsumeOrderService;
|
||||
import lombok.AllArgsConstructor;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* 消费订单模块相关定时任务
|
||||
*
|
||||
* @author ZYJ
|
||||
* @date 2023/4/13
|
||||
*/
|
||||
@Component
|
||||
@AllArgsConstructor
|
||||
public class ConsumeTask {
|
||||
|
||||
private final RemoteConsumeOrderService remoteConsumeOrderService;
|
||||
|
||||
/**
|
||||
* 更新超时订单状态
|
||||
*/
|
||||
public void updateOrderStatus() {
|
||||
remoteConsumeOrderService.updateOrderStatus();
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新退款订单状态
|
||||
*/
|
||||
public void updateRefundStatus() {
|
||||
remoteConsumeOrderService.updateRefundStatus();
|
||||
}
|
||||
}
|
||||
-27
@@ -1,27 +0,0 @@
|
||||
package com.yida.data.job.task;
|
||||
|
||||
import com.yida.data.mall.feign.RemoteBillOrderService;
|
||||
import com.yida.data.mall.feign.RemoteBillStatisticsService;
|
||||
import com.yida.data.school.feign.smart.RemoteSmartWelcomeService;
|
||||
import lombok.AllArgsConstructor;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* 迎新指南模块相关定时任务
|
||||
*
|
||||
* @author ZYJ
|
||||
* @date 2023/6/21
|
||||
*/
|
||||
@Component
|
||||
@AllArgsConstructor
|
||||
public class GuideTask {
|
||||
|
||||
private final RemoteSmartWelcomeService remoteSmartWelcomeService;
|
||||
|
||||
/**
|
||||
* 更新超时迎新订单状态
|
||||
*/
|
||||
public void updateGuideRosterOrderStatus() {
|
||||
remoteSmartWelcomeService.updateGuideRosterOrderStatus();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user