| | |
| | | import org.springframework.beans.factory.annotation.Value; |
| | | import org.springframework.scheduling.annotation.Scheduled; |
| | | import org.springframework.stereotype.Component; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.io.IOException; |
| | |
| | | |
| | | // WMS分配入库库位异常上报 |
| | | @Scheduled(cron = "0/5 * * * * ? ") |
| | | @Transactional |
| | | public synchronized void locationAssignmentExceptionEscalation() { |
| | | List<TaskWrk> taskWrkList = taskWrkMapper.selectList(new EntityWrapper<TaskWrk>().eq("wrk_sts", 5)); |
| | | |