shp파일 생성 수정

This commit is contained in:
2026-01-23 14:08:05 +09:00
parent 3f4cf070cd
commit 406009e700
5 changed files with 30 additions and 20 deletions

View File

@@ -498,6 +498,9 @@ public class InferenceResultCoreService {
.orElseThrow(() -> new CustomApiException("NOT_FOUND_DATA", HttpStatus.NOT_FOUND));
InferenceLearnDto dto = new InferenceLearnDto();
dto.setUid(entity.getUid());
dto.setM1ModelBatchId(entity.getM1ModelBatchId());
dto.setM2ModelBatchId(entity.getM2ModelBatchId());
dto.setM3ModelBatchId(entity.getM3ModelBatchId());
return dto;
}

View File

@@ -16,5 +16,5 @@ public interface InferenceResultRepositoryCustom {
Long getInferenceLearnIdByUuid(UUID uuid);
public Optional<MapSheetLearnEntity> getInferenceUid(UUID uuid);
Optional<MapSheetLearnEntity> getInferenceUid(UUID uuid);
}