|
@@ -5,6 +5,7 @@ import com.zhongzheng.common.core.domain.AjaxResult;
|
|
import com.zhongzheng.framework.web.service.AsyncService;
|
|
import com.zhongzheng.framework.web.service.AsyncService;
|
|
import com.zhongzheng.framework.web.service.WxLoginService;
|
|
import com.zhongzheng.framework.web.service.WxLoginService;
|
|
import com.zhongzheng.modules.exam.bo.ExamApplyQueryBo;
|
|
import com.zhongzheng.modules.exam.bo.ExamApplyQueryBo;
|
|
|
|
+import com.zhongzheng.modules.order.service.IOrderHandleService;
|
|
import com.zhongzheng.modules.polyv.service.IPolyvLiveService;
|
|
import com.zhongzheng.modules.polyv.service.IPolyvLiveService;
|
|
import com.zhongzheng.modules.schedule.service.IScheduleService;
|
|
import com.zhongzheng.modules.schedule.service.IScheduleService;
|
|
import com.zhongzheng.modules.user.bo.UserQueryBo;
|
|
import com.zhongzheng.modules.user.bo.UserQueryBo;
|
|
@@ -43,6 +44,8 @@ public class ScheduleController extends BaseController {
|
|
|
|
|
|
private final WxLoginService wxLoginService;
|
|
private final WxLoginService wxLoginService;
|
|
|
|
|
|
|
|
+ private final IOrderHandleService iOrderHandleService;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 商品购买发送消息
|
|
* 商品购买发送消息
|
|
* @return
|
|
* @return
|
|
@@ -458,4 +461,11 @@ public class ScheduleController extends BaseController {
|
|
iScheduleService.usbUserDownload();
|
|
iScheduleService.usbUserDownload();
|
|
return AjaxResult.success();
|
|
return AjaxResult.success();
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @ApiOperation("经办订单超时关闭")
|
|
|
|
+ @GetMapping("/order/closeOverHandle")
|
|
|
|
+ public AjaxResult closeOverHandle(){
|
|
|
|
+ iOrderHandleService.overTimeCloseOrder();
|
|
|
|
+ return AjaxResult.success();
|
|
|
|
+ }
|
|
}
|
|
}
|