추론관리 > 분석결과 템플릿 추가

추론관리 Entity 추가
This commit is contained in:
2025-11-21 10:26:49 +09:00
parent 760bd707cb
commit b98c156825
10 changed files with 287 additions and 44 deletions

View File

@@ -1,6 +1,8 @@
package com.kamco.cd.kamcoback.inference;
import com.kamco.cd.kamcoback.inference.service.InferenceResultService;
import io.swagger.v3.oas.annotations.tags.Tag;
import java.util.List;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@@ -10,4 +12,7 @@ import org.springframework.web.bind.annotation.RestController;
@RequiredArgsConstructor
@RestController
public class InferenceResultApiController {
private final InferenceResultService inferenceResultService;
}

View File

@@ -1,5 +1,6 @@
package com.kamco.cd.kamcoback.inference.service;
import com.kamco.cd.kamcoback.postgres.core.InferenceResultCoreService;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@@ -9,4 +10,8 @@ import org.springframework.transaction.annotation.Transactional;
@Transactional(readOnly = true)
public class InferenceResultService {
private final InferenceResultCoreService inferenceResultCoreService;
}