설명 수정

This commit is contained in:
hyojun.choi 2024-08-20 10:49:43 +09:00
parent 17d3b5d797
commit 10efba4e25
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
@RequiredArgsConstructor
@RequestMapping("/api/roof-material")
@Tag(name = "RoofMaterialController", description = "지붕재 API")
@Tag(name = "RoofMaterialController", description = "지붕재 관련 API")
public class RoofMaterialController {
private final RoofMaterialService roofService;

View File

@ -10,7 +10,7 @@ import org.springframework.web.bind.annotation.*;
@RestController
@RequiredArgsConstructor
@RequestMapping("/api/trestle")
@Tag(description = "가대 관련 API", name = "TrestleController")
@Tag(name = "TrestleController", description = "가대 관련 API")
public class TrestleController {
private final TrestleService trestleService;