|
@@ -3,6 +3,7 @@ package com.zjugis.z_workflow.remote;
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
+import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
@@ -15,7 +16,7 @@ import java.util.List;
|
|
|
public interface ReportClient {
|
|
|
|
|
|
@PostMapping("/getReportByIds")
|
|
|
- public String getReportByIds(String reportIds);
|
|
|
+ public String getReportByIds(@RequestParam("reportIds") String reportIds);
|
|
|
|
|
|
@PostMapping("/getReportByMarks")
|
|
|
public String getReportByMarks(@RequestBody List<String> marks);
|