| | |
| | | package com.zy.core.model.protocol; |
| | | |
| | | import com.core.common.Cools; |
| | | import com.zy.asrs.entity.BasSte; |
| | | import com.zy.core.enums.SteHisTaskStatusType; |
| | | import com.zy.core.enums.SteLocaType; |
| | |
| | | /** |
| | | * 任务号 |
| | | */ |
| | | public Integer taskNo = 0; |
| | | public Short taskNo = 0; |
| | | |
| | | /** |
| | | * 正在执行任务 |
| | |
| | | */ |
| | | private String lastIo = "I"; |
| | | |
| | | private String pakMk = "-"; |
| | | |
| | | public BasSte toSqlModel(BasSte basSte){ |
| | | if (alarm!=null) { |
| | | basSte.setSteErr(alarm.longValue()); |
| | | } |
| | | basSte.setWrkNo(taskNo); |
| | | basSte.setWrkNo(taskNo.intValue()); |
| | | if (!Cools.isEmpty(row)) { |
| | | basSte.setRow(row.intValue()); |
| | | } |
| | | if (!Cools.isEmpty(bay)) { |
| | | basSte.setBay(bay.intValue()); |
| | | } |
| | | if (!Cools.isEmpty(lev)) { |
| | | basSte.setLev(lev.intValue()); |
| | | } |
| | | return basSte; |
| | | } |
| | | |
| | | // 是否处于空闲待命状态 |
| | | public Boolean isIdle() { |
| | | return this.statusType.equals(SteStatusType.IDLE) |
| | | && this.pakMk.equals("N") |
| | | && !isAlarm(); |
| | | } |
| | | |
| | | // 是否处于报警状态 |
| | | public Boolean isAlarm() { |
| | | return this.alarm > 1; |
| | | } |
| | | |
| | | } |