This commit is contained in:
kochetkov 2025-02-27 15:36:57 +03:00
parent 49c3979850
commit 4f378b3188

View file

@ -48,6 +48,7 @@ public class ConfigExecutorService {
public FileModel exportData(ExportDataRequest request) {
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
HttpEntity<ExportDataRequest> entity = new HttpEntity<>(request, headers);
ResponseEntity<byte[]> response = restTemplate.exchange(url.concat("/").concat("downloadCSV"),