| | |
| | | /** |
| | | * 出库任务下发 |
| | | */ |
| | | // @Scheduled(cron = "0/3 * * * * ? ") |
| | | @Scheduled(cron = "0/3 * * * * ? ") |
| | | private void execute() { |
| | | List<WrkMast> wrkMasts=wrkMastService.selectList(new EntityWrapper<WrkMast>() |
| | | .eq("wrk_sts",11) |
| | | .in("io_type",11,101,103,107,110)); |
| | | List<WrkMast> wrkMasts = wrkMastService.selectList(new EntityWrapper<WrkMast>() |
| | | .eq("wrk_sts", 11) |
| | | .in("io_type", 11, 101, 103, 107, 110)); |
| | | for(WrkMast wrkMast:wrkMasts){ |
| | | ReturnT<String> result = outWorkHandler.start(wrkMast); |
| | | if (!result.isSuccess()) { |