상세정보 목록 검색 추가

This commit is contained in:
2025-11-25 18:14:32 +09:00
parent ffbf8e0cf3
commit a4909efd5b
2 changed files with 8 additions and 0 deletions

View File

@@ -215,8 +215,10 @@ public class InferenceResultDto {
public static class Geom { public static class Geom {
Integer compareYyyy; Integer compareYyyy;
Integer targetYyyy; Integer targetYyyy;
String classBeforeCd;
String classBeforeName; String classBeforeName;
Double classBeforeProb; Double classBeforeProb;
String classAfterCd;
String classAfterName; String classAfterName;
Double classAfterProb; Double classAfterProb;
Long mapSheetNum; Long mapSheetNum;
@@ -224,16 +226,20 @@ public class InferenceResultDto {
public Geom( public Geom(
Integer compareYyyy, Integer compareYyyy,
Integer targetYyyy, Integer targetYyyy,
String classBeforeCd,
String classBeforeName, String classBeforeName,
Double classBeforeProb, Double classBeforeProb,
String classAfterCd,
String classAfterName, String classAfterName,
Double classAfterProb, Double classAfterProb,
Long mapSheetNum Long mapSheetNum
) { ) {
this.compareYyyy = compareYyyy; this.compareYyyy = compareYyyy;
this.targetYyyy = targetYyyy; this.targetYyyy = targetYyyy;
this.classBeforeCd = classBeforeCd;
this.classBeforeName = classBeforeName; this.classBeforeName = classBeforeName;
this.classBeforeProb = classBeforeProb; this.classBeforeProb = classBeforeProb;
this.classAfterCd = classAfterCd;
this.classAfterName = classAfterName; this.classAfterName = classAfterName;
this.classAfterProb = classAfterProb; this.classAfterProb = classAfterProb;
this.mapSheetNum = mapSheetNum; this.mapSheetNum = mapSheetNum;

View File

@@ -181,8 +181,10 @@ public class InferenceResultRepositoryImpl implements InferenceResultRepositoryC
mapSheetAnalDataGeom.compareYyyy, mapSheetAnalDataGeom.compareYyyy,
mapSheetAnalDataGeom.targetYyyy, mapSheetAnalDataGeom.targetYyyy,
mapSheetAnalDataGeom.classBeforeCd, mapSheetAnalDataGeom.classBeforeCd,
Expressions.stringTemplate("fn_code_name({0}, {1})", "0000", mapSheetAnalDataGeom.classBeforeCd),
mapSheetAnalDataGeom.classBeforeProb, mapSheetAnalDataGeom.classBeforeProb,
mapSheetAnalDataGeom.classAfterCd, mapSheetAnalDataGeom.classAfterCd,
Expressions.stringTemplate("fn_code_name({0}, {1})", "0000", mapSheetAnalDataGeom.classAfterCd),
mapSheetAnalDataGeom.classAfterProb, mapSheetAnalDataGeom.classAfterProb,
mapSheetAnalDataGeom.mapSheetNum)) mapSheetAnalDataGeom.mapSheetNum))
.from(mapSheetAnalDataGeom) .from(mapSheetAnalDataGeom)