|
|
@@ -82,8 +82,9 @@ public class KuaishouLiveAccountReportController extends BaseController {
|
|
|
@GetMapping("/getOperateCostTrendChartList")
|
|
|
public Result getOperateCostTrendChartList(@ApiParam("userId") @RequestParam(value = "userId", required = true) Long userId,
|
|
|
@ApiParam("startDate") @RequestParam(value = "startDate", required = true) String startDate,
|
|
|
+ @ApiParam("type 1-查自己") @RequestParam(value = "type", required = true) String type,
|
|
|
@ApiParam("endDate") @RequestParam(value = "endDate", required = true) String endDate) {
|
|
|
- JSONObject result = KuaishouLiveAccountReportService.getOperateCostTrendChartList(userId, startDate, endDate);
|
|
|
+ JSONObject result = KuaishouLiveAccountReportService.getOperateCostTrendChartList(userId, type, startDate, endDate);
|
|
|
return Result.success(result);
|
|
|
|
|
|
}
|