Compare commits

..

No commits in common. "a5f174e5da0ff9e32dae191e2433c0f361b98ba3" and "75b40b7c0b8312e049eb21e1cfb01f315b2af6b6" have entirely different histories.

View File

@ -336,19 +336,16 @@ BoardResponse boardResponse = null;
/* [1]. QSP API (url + fileNo) Setting */
String url = null;
if("NO".equals(zipYn)) {
url = QSP_API_URL + "/api/file/downloadFile2?encodeFileNo=" + keyNo;
url = QSP_API_URL + "/api/file/downloadFile2";
}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>();