추론 결과 조회 수정
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user