| | |
| | | public CrnStatusType statusType; |
| | | |
| | | /** |
| | | * 状态枚举 |
| | | */ |
| | | public CrnStatusType statusTypeTwo; |
| | | |
| | | /** |
| | | * 堆垛机当前列号 |
| | | */ |
| | | public Short bay; |
| | |
| | | this.status = CrnStatusType.get(type).id.shortValue(); |
| | | } |
| | | |
| | | public void setStatusTwo(Short status) { |
| | | this.statusTwo = status; |
| | | this.statusTypeTwo = CrnStatusType.get(status); |
| | | } |
| | | |
| | | public void setStatusTwo(CrnStatusType type) { |
| | | this.statusTypeTwo = type; |
| | | this.statusTwo = CrnStatusType.get(type).id.shortValue(); |
| | | } |
| | | |
| | | public Short getTemp1() { |
| | | return temp1; |
| | | } |
| | |
| | | public void setzSpeed(Short zSpeed) { |
| | | this.zSpeed = Float.valueOf(zSpeed); |
| | | } |
| | | |
| | | public void setzSpeedTwo(Short zSpeedTwo) { |
| | | this.zSpeedTwo = Float.valueOf(zSpeedTwo); |
| | | } |