| | |
| | | @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); |
| | | }*/ |
| | | |
| | | @GetMapping("getDischargePage") |
| | | public Response getDischargePage(@RequestParam int pageNum,@RequestParam int pageSize){ |
| | | return service.getDischargePage(pageNum,pageSize); |
| | | } |
| | | |
| | | //根据充放电记录查询单体放电历史详情 |
| | | /*//根据充放电记录查询单体放电历史详情 |
| | | @ApiOperation("查询单次放电记录详情") |
| | | @GetMapping("getByBattGroupIdAndTestRecordCount") |
| | | public Response getByBattGroupIdAndTestRecordCount(@RequestParam int battGroupId,@RequestParam int testRecordCount){ |
| | | Response res=dataService.getByBattGroupIdAndTestRecordCount(battGroupId,testRecordCount); |
| | | return res; |
| | | } |
| | | }*/ |
| | | |
| | | |
| | | /*@PostMapping("searchGroupAssess") |
| | |
| | | |
| | | //获取有效的放电记录 |
| | | List<BattTestInf> searchDischarge(int battGroupId); |
| | | |
| | | List<BattTestInf> getDischargeList(); |
| | | } |
| | |
| | | |
| | | @TableField("binf_id") |
| | | @ApiModelProperty("电池组id") |
| | | private Integer binfId; |
| | | private Integer battGroupId; |
| | | |
| | | @TableField("record_time") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | |
| | | |
| | | @TableField(exist = false) |
| | | private float realCap; |
| | | |
| | | @TableField(exist = false) |
| | | private String battGroupName; |
| | | |
| | | } |
| | |
| | | return new Response().set(1, pageInfo); |
| | | } |
| | | |
| | | public Response getDischargePage(int pageNum, int pageSize) { |
| | | PageHelper.startPage(pageNum, pageSize); |
| | | List<BattTestInf> list =mapper.getDischargeList(); |
| | | PageInfo pageInfo = new PageInfo(list); |
| | | return new Response().set(1, pageInfo); |
| | | } |
| | | |
| | | /* |
| | | //1.4电池性能评估 |
| | | public Response searchGroupAssess(int pageNum, int pageSize, ReportBattDTO tinf, int userId){ |
| | |
| | | </where> |
| | | ORDER BY db_dis_batt.batt_test_inf.BattGroupId asc, test_starttime desc |
| | | </select> |
| | | <select id="getDischargeList" resultType="com.whyc.pojo.db_dis_batt.BattTestInf"> |
| | | select |
| | | binf_name as battGroupName,batt_test_inf.binf_id as battGroupId,test_record_count,group_vol,test_curr,max_monvol,min_monvol,test_cap,test_starttime,record_time,test_timelong,test_stoptype |
| | | from db_dis_batt.batt_test_inf,db_batt.power_inf where db_batt.power_inf.binf_id=db_dis_batt.batt_test_inf.binf_id |
| | | and test_starttype=3 and test_type=3 |
| | | and (test_stoptype in (3, 4, 6) |
| | | or (test_stoptype=2 and test_timelong>=7200)) |
| | | ORDER BY db_dis_batt.batt_test_inf.test_starttime desc |
| | | </select> |
| | | </mapper> |