| package com.vincent.rsf.server.manager.schedules; | 
|   | 
| import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; | 
| import com.vincent.rsf.server.manager.entity.AsnOrder; | 
| import com.vincent.rsf.server.manager.service.AsnOrderItemLogService; | 
| import com.vincent.rsf.server.manager.service.AsnOrderItemService; | 
| import com.vincent.rsf.server.manager.service.AsnOrderLogService; | 
| import com.vincent.rsf.server.manager.service.AsnOrderService; | 
| import org.springframework.beans.factory.annotation.Autowired; | 
| import org.springframework.scheduling.annotation.Scheduled; | 
| import org.springframework.stereotype.Component; | 
| import org.springframework.transaction.annotation.Transactional; | 
|   | 
| /** | 
|  * @author Ryan | 
|  * @version 1.0 | 
|  * @title AsnOrderLogSchedule | 
|  * @description | 
|  * @create 2025/3/19 19:07 | 
|  */ | 
| @Component | 
| public class AsnOrderLogSchedule { | 
|   | 
|     /** | 
|      * @author Ryan | 
|      * @description 删除已完成订单加入Log表 | 
|      * @param | 
|      * @return | 
|      * @time 2025/3/19 19:09 | 
|      */ | 
|     @Scheduled(cron = "0 0/05 * * * ?  ") | 
|     @Transactional(rollbackFor = Exception.class) | 
|     public void moveOrderToLog() { | 
|   | 
|     } | 
| } |