추론 결과 조회 수정

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

View File

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