| | |
| | | @ApiModelProperty(value = "启动失败原因") |
| | | private Integer controlFailType; |
| | | |
| | | @TableField("last_captest_stop_type") |
| | | private Integer lastCapTestStopType; |
| | | |
| | | @TableField(exist = false) |
| | | private String lastCapTestStopTypeName; |
| | | |
| | | @TableField(exist = false) |
| | | private String controlFailTypeName; |
| | | |
| | |
| | | BattRtstate brt = battRtstateMapper.selectOne(wrapper); |
| | | if(brt!=null){ |
| | | brt.setControlFailTypeName(BattTestData.getControlFailType6186(brt.getControlFailType())); |
| | | brt.setLastCapTestStopTypeName(BattTestData.getStopType_61853(brt.getLastCapTestStopType())); |
| | | } |
| | | return new Response().setII(1, brt == null ? false : true, brt, ""); |
| | | } |