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

This commit is contained in:
2025-11-20 16:53:11 +09:00
parent da885a12d8
commit 3e8459ea35
6 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.kamco.cd.kamcoback.inference.service;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
@RequiredArgsConstructor
@Transactional(readOnly = true)
public class InferenceResultService {
}