추론 결과 조회 수정

This commit is contained in:
2026-01-22 12:16:16 +09:00
parent 1be0c1f722
commit 7515da4541
2 changed files with 6 additions and 2 deletions

View File

@@ -306,6 +306,7 @@ public class InferenceDetailDto {
String mapSheetName;
String subUid;
String pnu;
String passYn;
// @JsonIgnore String gemoStr;
// @JsonIgnore String geomCenterStr;
@@ -325,7 +326,8 @@ public class InferenceDetailDto {
Long mapSheetNum,
String mapSheetName,
String subUid,
String pnu) {
String pnu,
String passYn) {
this.uuid = uuid;
this.uid = uid;
this.compareYyyy = compareYyyy;
@@ -341,6 +343,7 @@ public class InferenceDetailDto {
this.mapSheetName = mapSheetName;
this.subUid = subUid;
this.pnu = pnu;
this.passYn = passYn;
}
}

View File

@@ -441,7 +441,8 @@ public class MapSheetLearnRepositoryImpl implements MapSheetLearnRepositoryCusto
Expressions.stringTemplate(
"substring({0} from 1 for 8)",
mapSheetAnalDataInferenceGeomEntity.resultUid),
pnu))
pnu,
Expressions.nullExpression(String.class)))
.from(mapSheetAnalInferenceEntity)
.join(mapSheetAnalDataInferenceEntity)
.on(mapSheetAnalDataInferenceEntity.analUid.eq(mapSheetAnalInferenceEntity.id))