6184停止放电测试和停止内阻测试+testtype
| | |
| | | return service.startRes6184(devId, battGroupNum); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-6184停止内阻测试") |
| | | @GetMapping("stopRes6184") |
| | | public Response stopRes6184(@RequestParam int devId, @RequestParam int battGroupNum) { |
| | | return service.stopRes6184(devId, battGroupNum); |
| | | } |
| | | |
| | | @ApiOperation(tags = "在线监测-实时监控", value = "在线监测-实时监控-6184停止测试") |
| | | @GetMapping("stop6184") |
| | | public Response stop6184(@RequestParam int devId, @RequestParam int battGroupNum) { |
| | |
| | | final public static int CMD_Stop=83; |
| | | final public static int CMD_SetDischargeParm=40; |
| | | final public static int CMD_GetDischargeParm=41; |
| | | final public static int CMD_StartResDischarge = 0x32; //内阻测试 |
| | | final public static int CMD_StartResDischarge = 0x32; //启动内阻测试 |
| | | final public static int CMD_StopResDischarge = 0x33; //停止内阻测试 |
| | | final public static int CMd_SetIp_Tem=90; // 暂时 |
| | | final public static int CMd_SetIp_Per=88; // 永久 |
| | | |
| | |
| | | } |
| | | //在线监测-实时监控-6184停止测试 |
| | | public Response stop6184(int devId, int battGroupNum) { |
| | | boolean bl = sendCmdToFBS9100Dev2(FBS9100_ComBase.CMD_Stop,0, devId, battGroupNum); |
| | | boolean bl = sendCmdToFBS9100Dev2(FBS9100_ComBase.CMD_Stop,FBS9100_ComBase.CMD_StopDischarge, devId, battGroupNum); |
| | | return new Response().set(1,bl,bl==true?"6184停止测试成功!":"6184停止测试失败!"); |
| | | } |
| | | |
| | | //在线监测-实时监控-6184停止内阻测试 |
| | | public Response stopRes6184(int devId, int battGroupNum) { |
| | | boolean bl = sendCmdToFBS9100Dev2(FBS9100_ComBase.CMD_Stop,FBS9100_ComBase.CMD_StopResDischarge, devId, battGroupNum); |
| | | return new Response().set(1,bl,bl==true?"停止内阻测试成功!":"停止内阻测试失败!"); |
| | | } |
| | | } |