모델학습 설정 dto 수정

This commit is contained in:
2026-02-04 13:56:32 +09:00
parent 2c825b14ee
commit fdfda049f8
3 changed files with 24 additions and 5 deletions

View File

@@ -26,13 +26,13 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
@RequiredArgsConstructor
@Tag(name = "모델관리", description = "어드민 홈 > 모델학습관리 > 모델관리 > 목록")
@Tag(name = "모델학습 관리", description = "어드민 홈 > 모델학습관리 > 모델관리 > 목록")
@RequestMapping("/api/models")
public class ModelMngApiController {
private final ModelMngService modelMngService;
private final ModelTrainService modelTrainService;
@Operation(summary = "모델관리 목록 조회", description = "모델관리 목록 조회 API")
@Operation(summary = "모델학습 목록 조회", description = "모델학습 목록 조회 API")
@ApiResponses(
value = {
@ApiResponse(