dev #33

Merged
ysCha merged 5 commits from dev into dev-deploy 2025-05-29 16:11:39 +09:00
Showing only changes of commit 9f71c354a8 - Show all commits

View File

@ -336,16 +336,19 @@ BoardResponse boardResponse = null;
/* [1]. QSP API (url + fileNo) Setting */
String url = null;
if("NO".equals(zipYn)) {
url = QSP_API_URL + "/api/file/downloadFile2";
url = QSP_API_URL + "/api/file/downloadFile2?encodeFileNo=" + keyNo;
}else{
url = QSP_API_URL + "/api/file/downloadFile";
if ("Y".equals(zipYn)) {
url += "?noticeNo=" + keyNo;
} else {
url += "?fileNo=" + keyNo;
}
}
if ("Y".equals(zipYn)) {
url += "?noticeNo=" + keyNo;
} else {
url += "?fileNo=" + keyNo;
}
/* [2]. QSP API CALL -> Response */
Map<String, String> result = new HashMap<String, String>();