| | |
| | | liftProtocol.setShuttleNo((short) 0); |
| | | liftProtocol.setProtocolStatus(LiftProtocolStatusType.IDLE); |
| | | liftProtocol.setPakMk(true); |
| | | liftProtocol.setSecurityMk(false); |
| | | } |
| | | News.info("提升机手动任务执行完成,提升机号={},任务数据={}", command.getLiftNo(), JSON.toJSON(command)); |
| | | } |
| | | |
| | | //下发一条提升机解锁命令 |
| | | LiftCommand liftCommand = new LiftCommand(); |
| | | liftCommand.setRun((short) 0); |
| | | liftCommand.setLiftNo(command.getLiftNo()); |
| | | liftCommand.setLiftLock(false); |
| | | if (write(liftCommand)) { |
| | | News.info("提升机状态已解锁,提升机号={},任务数据={}", command.getLiftNo(), JSON.toJSON(command)); |
| | | } |
| | | |
| | | } |
| | | } |
| | | |