[MODIFY] 외부 Edge 패키지 등록 API에 execYn 필드 추가 및 관련 로직 수정

main
bjkim 8 months ago
parent 3204027ac1
commit c524f40d48

@ -161,6 +161,10 @@ public class ExternalAuthController {
@Schema(description = "압축여부(0:단일,1:묶음)", example = "1", required = true) @Schema(description = "압축여부(0:단일,1:묶음)", example = "1", required = true)
Integer archiveType, Integer archiveType,
@RequestParam
@Schema(description = "실행여부 (0:실행하지않음,1:실행)", example = "1", required = true)
String execYn,
@RequestParam @RequestParam
@Schema(description = "비밀글 여부 (true/false)", example = "false", required = true) @Schema(description = "비밀글 여부 (true/false)", example = "false", required = true)
@ -195,6 +199,8 @@ public class ExternalAuthController {
edgeSWVO.setEd_pkg_serial(edPkgSerial); edgeSWVO.setEd_pkg_serial(edPkgSerial);
edgeSWVO.setArchive_type(archiveType); edgeSWVO.setArchive_type(archiveType);
edgeSWVO.setDownload_location(downloadLocation); edgeSWVO.setDownload_location(downloadLocation);
edgeSWVO.setExec_yn(execYn);

Loading…
Cancel
Save