Browse Source

호출방식 변경

dwkim 2 years ago
parent
commit
a536be4367

+ 1 - 1
src/main/java/com/oqpo/api/web/controller/system/VerInfoController.java

@@ -101,7 +101,7 @@ public class VerInfoController {
101 101
             @ApiImplicitParam(name = "appNo", value = "앱버전번호", required = true, dataType = "String", paramType = "query")
102 102
     })
103 103
     @ApiOperation(value = "앱버전정보 삭제")
104
-    @PostMapping("/del-verinfo")
104
+    @GetMapping("/del-verinfo")
105 105
     public ResponseEntity<SaveResponse> delVerInfo(@ApiIgnore String userId,@RequestParam(value = "appNo") String appNo ) throws Exception {
106 106
         verInfoService.delAppVer(userId, appNo);
107 107
         return ResponseEntity.ok(SaveResponse.toDTO(SystemMessageCode.DELETE_OK));