| | |
| | | @Scheduled(cron = "0/1 * * * * ? ") |
| | | @Transactional |
| | | public void executeMove(){ |
| | | List<WrkMast> wrkMasts = wrkMastService.selectList(new EntityWrapper<WrkMast>().eq("wrk_sts", WrkStsType.COMPLETE_MOVE.sts)); |
| | | List<WrkMast> wrkMasts = wrkMastService.selectList(new EntityWrapper<WrkMast>() |
| | | .in("wrk_sts" |
| | | , WrkStsType.COMPLETE_MOVE.sts |
| | | , WrkStsType.COMPLETE_MOVE_TRANSPORT_LIFT.sts |
| | | , WrkStsType.COMPLETE_MOVE_TRANSPORT_LIFT_OUT.sts |
| | | , WrkStsType.MOVE_IN_NO_LIFT_14.sts |
| | | , WrkStsType.MOVE_OUT_NO_LIFT_13.sts |
| | | )); |
| | | if (wrkMasts.isEmpty()) { |
| | | return; |
| | | } |