| | |
| | | private Boolean pakMk = true; |
| | | |
| | | /** |
| | | * 四向穿梭车调度提升机时,需要锁定此标记 |
| | | */ |
| | | private Boolean securityMk = false; |
| | | |
| | | /** |
| | | * 任务命令 |
| | | */ |
| | | private LiftAssignCommand assignCommand; |
| | |
| | | |
| | | // 是否处于空闲待命状态 |
| | | public Boolean isIdle() { |
| | | if(this.taskNo == null |
| | | || this.liftLock == null |
| | | || this.ready == null |
| | | || this.running == null |
| | | || this.mode == null |
| | | || this.pakMk == null |
| | | ){ |
| | | return false; |
| | | } |
| | | |
| | | boolean res = this.taskNo == 0 |
| | | && !this.liftLock |
| | | && this.ready |
| | | && !this.running |
| | | && this.mode |
| | | && this.pakMk.equals(true) |
| | | && !this.securityMk |
| | | ; |
| | | return res; |
| | | } |