|
|
|
|
@ -168,8 +168,8 @@ public class ExternalAuthController {
|
|
|
|
|
@RequestParam("auth_id") String authId,
|
|
|
|
|
|
|
|
|
|
@RequestParam
|
|
|
|
|
@Schema(description = "엣지 패키지 정보", example = "14", required = true)
|
|
|
|
|
Integer edPkgSerial,
|
|
|
|
|
@Schema(description = "SW/엣지 패키지 정보", example = "14", required = true)
|
|
|
|
|
Integer pkg_serial,
|
|
|
|
|
|
|
|
|
|
@RequestParam
|
|
|
|
|
@Schema(description = "압축여부(0:단일,1:묶음)", example = "1", required = true)
|
|
|
|
|
@ -214,17 +214,12 @@ public class ExternalAuthController {
|
|
|
|
|
edgeSWVO.setAuth_id(authId);
|
|
|
|
|
edgeSWVO.setUser_id(userId);
|
|
|
|
|
edgeSWVO.setCreation_datetime(creationDatetime);
|
|
|
|
|
edgeSWVO.setEd_pkg_serial(edPkgSerial);
|
|
|
|
|
edgeSWVO.setPkg_serial(pkg_serial);
|
|
|
|
|
edgeSWVO.setArchive_type(archiveType);
|
|
|
|
|
edgeSWVO.setDownload_location(downloadLocation);
|
|
|
|
|
edgeSWVO.setExec_yn(execYn);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
edgeSWVO.setSecret_at(secretAt);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 파일이 있으면 S3 업로드
|
|
|
|
|
if (file != null && !file.isEmpty()) {
|
|
|
|
|
edgeSWUploadService.uploadFilesToS3Only(edgeSWVO, file);
|
|
|
|
|
|