|
@@ -17,9 +17,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.util.CollectionUtils;
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Objects;
|
|
@@ -35,7 +33,8 @@ public class GAController extends BaseController {
|
|
|
|
|
|
private final Gson gson = new Gson();
|
|
|
|
|
|
- @RequestMapping("/report")
|
|
|
+ @PostMapping("/report")
|
|
|
+ @ResponseBody
|
|
|
public OpenAPIResponse<List<? extends GAReportDataDTO>> getGAReport(
|
|
|
@RequestBody OpenAPIRequest<GAReportRequestDTO> apiRequest)
|
|
|
throws BadRequestException, DataException {
|