57 lines
2.5 KiB
Java
57 lines
2.5 KiB
Java
package com.kamco.cd.training.dataset;
|
|
|
|
import com.kamco.cd.training.config.api.ApiResponseDto;
|
|
import com.kamco.cd.training.dataset.dto.MapSheetDto;
|
|
import com.kamco.cd.training.dataset.service.MapSheetService;
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
import io.swagger.v3.oas.annotations.media.Content;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.responses.ApiResponse;
|
|
import io.swagger.v3.oas.annotations.responses.ApiResponses;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
import jakarta.validation.Valid;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.data.domain.Page;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
@Tag(name = "도엽 관리", description = "도엽(MapSheet) 관리 API")
|
|
@RestController
|
|
@RequiredArgsConstructor
|
|
public class MapSheetApiController {
|
|
|
|
private final MapSheetService mapSheetService;
|
|
|
|
@Operation(summary = "도엽 목록 조회", description = "데이터셋의 도엽 목록을 조회합니다.")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(
|
|
responseCode = "200",
|
|
description = "조회 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema = @Schema(implementation = Page.class))),
|
|
@ApiResponse(responseCode = "400", description = "잘못된 검색 조건", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@PostMapping("/api/datasets/items/search")
|
|
public ApiResponseDto<Page<MapSheetDto.Basic>> searchMapSheets(
|
|
@RequestBody @Valid MapSheetDto.SearchReq searchReq) {
|
|
return ApiResponseDto.ok(mapSheetService.searchMapSheets(searchReq));
|
|
}
|
|
|
|
@Operation(summary = "도엽 삭제", description = "도엽을 삭제합니다 (다건 지원).")
|
|
@ApiResponses(
|
|
value = {
|
|
@ApiResponse(responseCode = "200", description = "삭제 성공", content = @Content),
|
|
@ApiResponse(responseCode = "400", description = "잘못된 요청", content = @Content),
|
|
@ApiResponse(responseCode = "404", description = "도엽을 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@PostMapping("/api/datasets/items/delete")
|
|
public ApiResponseDto<Void> deleteMapSheets(@RequestBody @Valid MapSheetDto.DeleteReq deleteReq) {
|
|
mapSheetService.deleteMapSheets(deleteReq);
|
|
return ApiResponseDto.ok(null);
|
|
}
|
|
}
|