From 69a2440e9060c709ca6a05aed6de6ed0fe6e77eb Mon Sep 17 00:00:00 2001 From: basssy Date: Mon, 9 Sep 2024 17:02:35 +0900 Subject: [PATCH] =?UTF-8?q?QSP=20=EA=B3=B5=ED=86=B5=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EB=8F=99=EA=B8=B0=ED=99=94=20post=20->=20put=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/interplug/qcast/biz/commCode/CommCodeController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/interplug/qcast/biz/commCode/CommCodeController.java b/src/main/java/com/interplug/qcast/biz/commCode/CommCodeController.java index 6d5db955..dd8b7414 100644 --- a/src/main/java/com/interplug/qcast/biz/commCode/CommCodeController.java +++ b/src/main/java/com/interplug/qcast/biz/commCode/CommCodeController.java @@ -1,7 +1,7 @@ package com.interplug.qcast.biz.commCode; import org.springframework.http.HttpStatus; -import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseStatus; @@ -22,7 +22,7 @@ public class CommCodeController { private final CommCodeService commCodeService; @Operation(description = "공통코드 COMM_H, COMM_L 정보를 등록/수정 한다.(동기화)") - @PostMapping("/qc-comm-yn-update") + @PutMapping("/qc-comm-yn-update") @ResponseStatus(HttpStatus.OK) public CommCodeResponse setQcCommCdYn(@RequestBody CommCodeRequest codeReq) { CommCodeResponse codeResponse = new CommCodeResponse();