| | |
| | | @Autowired |
| | | private BattTestInfDataService dataService; |
| | | |
| | | @ApiOperation("查询分页-电池组的充放电记录") |
| | | /*@ApiOperation("查询分页-电池组的充放电记录") |
| | | @GetMapping("getPageByBattGroupId") |
| | | public Response getPageByBattGroupId(@RequestParam int battGroupId |
| | | , @RequestParam int pageNum, @RequestParam int pageSize){ |
| | | return service.getPageByBattGroupId(battGroupId,pageNum,pageSize); |
| | | }*/ |
| | | |
| | | @ApiOperation("查询分页-电池组的放电记录") |
| | | @GetMapping("getDischargePage") |
| | | public Response getDischargePage(@RequestParam int pageNum,@RequestParam int pageSize, |
| | | @RequestParam(required = false) Integer battGroupId){ |
| | | return service.getDischargePage(pageNum,pageSize,battGroupId); |
| | | } |
| | | |
| | | //根据充放电记录查询单体放电历史详情 |
| | | /*//根据充放电记录查询单体放电历史详情 |
| | | @ApiOperation("查询单次放电记录详情") |
| | | @GetMapping("getByBattGroupIdAndTestRecordCount") |
| | | public Response getByBattGroupIdAndTestRecordCount(@RequestParam int battGroupId,@RequestParam int testRecordCount){ |
| | | Response res=dataService.getByBattGroupIdAndTestRecordCount(battGroupId,testRecordCount); |
| | | return res; |
| | | } |
| | | }*/ |
| | | |
| | | |
| | | /*@PostMapping("searchGroupAssess") |