국유인 실태조사 bulk 확인
This commit is contained in:
@@ -322,4 +322,23 @@ public class GukYuinApiController {
|
||||
@PathVariable String chnDtctObjtId) {
|
||||
return ApiResponseDto.ok(gukYuinApiService.findRlbDtctObject(chnDtctObjtId));
|
||||
}
|
||||
|
||||
@Operation(summary = "실태조사 적합여부 업데이트", description = "실태조사 적합여부 업데이트")
|
||||
@ApiResponses(
|
||||
value = {
|
||||
@ApiResponse(
|
||||
responseCode = "201",
|
||||
description = "등록 성공",
|
||||
content =
|
||||
@Content(
|
||||
mediaType = "application/json",
|
||||
schema = @Schema(implementation = DetectMastReq.class))),
|
||||
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음", content = @Content),
|
||||
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
||||
})
|
||||
@PostMapping("/rlb/objt/{chnDtctObjtId}/stblt/{stbltYn}")
|
||||
public ApiResponseDto<ChngDetectContDto.ResultLabelDto> updateStbltObjtYn(
|
||||
@PathVariable String chnDtctObjtId, @PathVariable String stbltYn) {
|
||||
return ApiResponseDto.ok(gukYuinApiService.updateStbltObjtYn(chnDtctObjtId, stbltYn, ""));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user