| | |
| | | /** |
| | | * 作业标记 |
| | | */ |
| | | private Boolean pakMk = true; |
| | | private Boolean pakMk = false; |
| | | |
| | | /** |
| | | * 独占令牌 |
| | | * 未被任务占据,令牌为0 |
| | | * 被任务占据,将任务号赋值给令牌 |
| | | */ |
| | | private Integer token = 0; |
| | | |
| | | /** |
| | | * 任务命令 |
| | |
| | | boolean res = (this.taskNo == 0 || this.taskNo.intValue() == taskNo.intValue()) |
| | | && !this.busy |
| | | && this.model |
| | | && this.pakMk.equals(true) |
| | | && !this.pakMk |
| | | && !this.deviceError |
| | | ; |
| | | return res; |
| | |
| | | boolean res = this.taskNo == 0 |
| | | && !this.busy |
| | | && this.model |
| | | && this.pakMk.equals(true) |
| | | && !this.pakMk |
| | | && !this.deviceError |
| | | ; |
| | | return res; |
| | |
| | | |
| | | boolean res = !this.busy |
| | | && this.model |
| | | && this.pakMk.equals(true) |
| | | && !this.pakMk |
| | | && !this.deviceError |
| | | ; |
| | | return res; |