추론관리 목록 작업중

This commit is contained in:
2026-01-07 18:26:54 +09:00
parent aacf47a612
commit a285cc88ed
8 changed files with 176 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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 InferenceResultMngService {}