Commit a5f03c19 authored by Lambertliu's avatar Lambertliu

fix(statistics):设备分页Bug修改

parent dca8f51e
......@@ -116,7 +116,11 @@ public class ZLDPStatisticsController {
@TycloudOperation(ApiLevel = UserType.AGENCY)
@PostMapping(value = "/viewEquipPage")
@ApiOperation(httpMethod = "POST", value = "查询设备管理列表", notes = "查询设备管理列表")
public ResponseModel<Page<JSONObject>> viewEquipPage(@RequestBody DPFilterParamForDetailDto paramDto) {
public ResponseModel<Page<JSONObject>> viewEquipPage(@RequestBody DPFilterParamForDetailDto paramDto,
@RequestParam("size") Integer size,
@RequestParam("current") Integer current) {
paramDto.setCurrent(current);
paramDto.setSize(size);
return ResponseHelper.buildResponse(statisticsService.viewEquipPage(paramDto));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment