Compare commits

...

2 Commits

Author SHA1 Message Date
753bab0c48 Merge pull request 'qna downloadFile2 추가' (#30) from feature/cha into dev
Reviewed-on: #30
2025-05-28 13:11:02 +09:00
cha
c04ccb43bb qna downloadFile2 추가 2025-05-28 13:09:29 +09:00

View File

@ -334,7 +334,13 @@ BoardResponse boardResponse = null;
}
/* [1]. QSP API (url + fileNo) Setting */
String url = QSP_API_URL + "/api/file/downloadFile";
String url = null;
if("NO".equals(zipYn)) {
url = QSP_API_URL + "/api/file/downloadFile2";
}else{
url = QSP_API_URL + "/api/file/downloadFile";
}
if ("Y".equals(zipYn)) {
url += "?noticeNo=" + keyNo;
} else {