package incheon.ags.mrb.analysis.service;

import org.springframework.core.io.Resource;
import org.springframework.http.ResponseEntity;

import java.io.IOException;
import java.util.List;
import java.util.Map;

public interface ExcelDownloadService {
    ResponseEntity<Resource> downloadExcel(String fileName, List<Map<String, Object>> data, Map<String, String> columnMap) throws IOException;
}
