fix: url 패턴에 맞춰 .ajax 사용

internalApi
박성영 1 month ago
parent 5b229d7f80
commit 9b5edc7993

@ -100,7 +100,7 @@ public class VehicleInterfaceController {
* @param envelope Envelope (header) (data)
* @return ResponseEntity<Envelope<BasicResponse>> HTTP , ,
*/
@PostMapping(value = "/basic", consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
@PostMapping(value = "/basic.ajax", consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
@Operation(
summary = "자동차기본사항조회",
description = "시군구연계 자동차기본사항조회 인터페이스. 요청 바디를 모델로 받아 정부시스템으로 전달합니다.",
@ -180,7 +180,7 @@ public class VehicleInterfaceController {
* @param envelope Envelope (header) (data)
* @return ResponseEntity<Envelope<LedgerResponse>> HTTP , ,
*/
@PostMapping(value = "/ledger", consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
@PostMapping(value = "/ledger.ajax", consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
@Operation(
summary = "자동차등록원부(갑)",
description = "시군구연계 자동차등록원부(갑) 인터페이스. 요청 바디를 모델로 받아 정부시스템으로 전달합니다.",

Loading…
Cancel
Save