
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
package com.takensoft.common.excel.service;
import com.takensoft.cms.cntnStats.dto.CntnStatsExcelDTO;
import com.takensoft.portal.entInfo.dto.BplcExcelDTO;
import com.takensoft.portal.entInfo.dto.EntInfoExcelDTO;
import com.takensoft.portal.ivstDscsn.dto.IvstDscsnExcelDTO;
import com.takensoft.portal.rvwMttr.dto.RvwMttrExcelDTO;
import com.takensoft.portal.rvwMttr.dto.RvwMttrPrgrsExcelDTO;
import jakarta.servlet.http.HttpServletResponse;
import java.util.List;
public interface ExcelService {
void ivstDscsnExcelDownload(HttpServletResponse response, IvstDscsnExcelDTO ivstDscsn) throws Exception;
void rvwMttrExcelDownload(HttpServletResponse response, RvwMttrExcelDTO rvwMttr, List<RvwMttrPrgrsExcelDTO> prgrsList) throws Exception;
void entInfoExcelDownload(HttpServletResponse response, EntInfoExcelDTO entInfo, List<BplcExcelDTO> bplcList) throws Exception;
void cntnStatsExcelDownload(HttpServletResponse response, List<CntnStatsExcelDTO> cntnStats, String chart);
void entInfoExcelDownloadAll(HttpServletResponse response, List<EntInfoExcelDTO> entInfoList) throws Exception;
}