| | |
| | | /** |
| | | * 左门(checkBox) |
| | | */ |
| | | @ApiModelProperty(value= "左门(checkBox)") |
| | | @ApiModelProperty(value= "进料门(checkBox)") |
| | | @TableField("left_door") |
| | | private String leftDoor; |
| | | |
| | | /** |
| | | * 右门(checkBox) |
| | | */ |
| | | @ApiModelProperty(value= "右门(checkBox)") |
| | | @ApiModelProperty(value= "出料门(checkBox)") |
| | | @TableField("right_door") |
| | | private String rightDoor; |
| | | |
| | | /** |
| | | * 左门可开(checkBox) |
| | | */ |
| | | @ApiModelProperty(value= "左门可开(checkBox)") |
| | | @ApiModelProperty(value= "进料门可开(checkBox)") |
| | | @TableField("left_in_enable") |
| | | private String leftInEnable; |
| | | |
| | | /** |
| | | * 左门可关(checkBox) |
| | | */ |
| | | @ApiModelProperty(value= "左门可关(checkBox)") |
| | | @ApiModelProperty(value= "进料门可关(checkBox)") |
| | | @TableField("left_out_enable") |
| | | private String leftOutEnable; |
| | | |
| | |
| | | /** |
| | | * 右门可开(checkBox) |
| | | */ |
| | | @ApiModelProperty(value= "右门可开(checkBox)") |
| | | @ApiModelProperty(value= "出料门可开(checkBox)") |
| | | @TableField("right_in_enable") |
| | | private String rightInEnable; |
| | | |
| | | /** |
| | | * 右门可关(checkBox) |
| | | */ |
| | | @ApiModelProperty(value= "右门可关(checkBox)") |
| | | @ApiModelProperty(value= "出料门可关(checkBox)") |
| | | @TableField("right_out_enable") |
| | | private String rightOutEnable; |
| | | |
| | |
| | | // null // 右门可关(checkBox) |
| | | // ); |
| | | |
| | | public String getJarMode$(){ |
| | | if (null == this.jarMode){ return null; } |
| | | switch (this.jarMode){ |
| | | case 0: |
| | | return "离线"; |
| | | case 1: |
| | | return "手动"; |
| | | case 2: |
| | | return "自动"; |
| | | case 3: |
| | | return "其他"; |
| | | default: |
| | | return String.valueOf(this.jarMode); |
| | | } |
| | | } |
| | | |
| | | public String getJarErr$(){ |
| | | if (null == this.jarErr){ return null; } |
| | | switch (this.jarErr){ |
| | | case 0: |
| | | return "无异常"; |
| | | case 1: |
| | | return "运行时进料门未关好"; |
| | | case 2: |
| | | return "运行时出料门未关好"; |
| | | case 3: |
| | | return "运行时未选择工艺"; |
| | | case 4: |
| | | return "设备运行中超高温"; |
| | | case 5: |
| | | return "设备运行中超高压"; |
| | | case 6: |
| | | return "急停被按下"; |
| | | case 7: |
| | | return "进料门关门超时"; |
| | | case 8: |
| | | return "出料门关门超时"; |
| | | default: |
| | | return String.valueOf(this.jarErr); |
| | | } |
| | | } |
| | | |
| | | public String getJarStatus$(){ |
| | | if (null == this.jarStatus){ return null; } |
| | | switch (this.jarStatus){ |
| | | case 0: |
| | | return "空闲"; |
| | | case 1: |
| | | return "开门1"; |
| | | case 2: |
| | | return "硫化中"; |
| | | case 3: |
| | | return "开门3"; |
| | | case 4: |
| | | return "停止"; |
| | | case 5: |
| | | return "左门打开中"; |
| | | case 6: |
| | | return "右门打开中"; |
| | | case 7: |
| | | return "左门关闭中"; |
| | | case 8: |
| | | return "右门关闭中"; |
| | | default: |
| | | return String.valueOf(this.jarStatus); |
| | | } |
| | | } |
| | | |
| | | } |