Commit a148686f by 周晓航

日志问题导致无效告警

parent c1af8397
......@@ -11,6 +11,7 @@ import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.ArrayList;
import java.util.List;
@FeignClient(name = "fm-svc-app", url = "${saas.svc.app.feign.url:}")
......@@ -25,6 +26,6 @@ public interface SvcAppClient {
//批量查询卡配置规则
@PostMapping(value = "/svc/cardapply/multi-info")
BaseResponse<List<CardApplyRes>> multiInfo(@RequestBody List<BatchSvcInfoRequest> requestList);
BaseResponse<List<CardApplyRes>> multiInfo(@RequestBody ArrayList<BatchSvcInfoRequest> requestList);
}
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