Commit 175c1286 by huluobin

update bug fix

parent ebdcb021
...@@ -137,8 +137,8 @@ public class CostApiController implements CostApi { ...@@ -137,8 +137,8 @@ public class CostApiController implements CostApi {
@GetMapping({"/getCostList"}) @GetMapping({"/getCostList"})
public CostResult<List<CostDto>> getCostList(@RequestParam String startDate, public CostResult<List<CostDto>> getCostList(@RequestParam String startDate,
@RequestParam String endDate, @RequestParam String endDate,
@RequestParam(name = "pageNum") Integer pageNum, @RequestParam Integer pageNum,
@RequestParam(name = "pageSize") Integer pageSize) { @RequestParam Integer pageSize) {
List<CostDto> costDtoList = this.costApiService.getCostList(startDate, endDate, pageNum, pageSize); List<CostDto> costDtoList = this.costApiService.getCostList(startDate, endDate, pageNum, pageSize);
return CostResult.success(costDtoList); return CostResult.success(costDtoList);
} }
......
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