| | |
| | | |
| | | @ApiOperation("单数据分析-单体数据列表") |
| | | @GetMapping("list") |
| | | public Response getList(@RequestParam int battGroupId){ |
| | | public Response getListWithTestTime(@RequestParam int battGroupId){ |
| | | List<BattgroupData> monList = service.getListWithTestTime(battGroupId); |
| | | return new Response().set(1,monList); |
| | | } |
| | | |
| | | @ApiOperation("对比分析-两组数据列表") |
| | | @GetMapping("compareList") |
| | | @ApiOperation(value = "对比分析-两组数据列表",notes = "data:第一行的基础数据,data2:第二行的基础数据," + |
| | | "data3:key-value键值对,其中resChangeRate:内阻变化率,volChangeRate:电压变化率,resBalanceRate:内阻均一性,volBalanceRate:电压均一性") |
| | | @GetMapping("comparedList") |
| | | public Response getComparedList(@RequestParam int baseBattGroupId,@RequestParam int battGroupId){ |
| | | return service.getComparedList(baseBattGroupId,battGroupId); |
| | | } |