package com.takensoft.common.excel.service; import com.takensoft.cms.cntnStats.dto.CntnStatsExcelDTO; import jakarta.servlet.http.HttpServletResponse; import java.util.List; /** * @author takensoft * @since 2024.04.09 * @modification * since | author | description * 2024.05.30 | 박정하 | cntnStatsExcelDownload 등록 * 2025.03.14 | 방선주 | 코드 리펙토링 * * 엑셀 다운로드 서비스 인터페이스 */ public interface ExcelService { /** * @param response - HTTP 응답 객체 * @param cntnStats - 게시판 접속 통계 목록 * @param chart - 차트 명 * @return int - 등록 성공 여부 * * 접속 통계 엑셀 다운로드 */ void cntnStatsExcelDownload(HttpServletResponse response, List cntnStats, String chart); }