Merge branch 'feat/demo-20251205' of https://10.100.0.10:3210/dabeeo/kamco-dabeeo-backoffice into feat/demo-20251205
This commit is contained in:
@@ -175,12 +175,20 @@ public class InferenceResultRepositoryImpl implements InferenceResultRepositoryC
|
|||||||
|
|
||||||
// 기준년도 분류
|
// 기준년도 분류
|
||||||
if (searchGeoReq.getTargetClass() != null && !searchGeoReq.getTargetClass().equals("")) {
|
if (searchGeoReq.getTargetClass() != null && !searchGeoReq.getTargetClass().equals("")) {
|
||||||
builder.and(mapSheetAnalDataGeomEntity.classAfterCd.eq(searchGeoReq.getTargetClass()));
|
builder.and(
|
||||||
|
mapSheetAnalDataGeomEntity
|
||||||
|
.classAfterCd
|
||||||
|
.toLowerCase()
|
||||||
|
.eq(searchGeoReq.getTargetClass().toLowerCase()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// 비교년도 분류
|
// 비교년도 분류
|
||||||
if (searchGeoReq.getCompareClass() != null && !searchGeoReq.getCompareClass().equals("")) {
|
if (searchGeoReq.getCompareClass() != null && !searchGeoReq.getCompareClass().equals("")) {
|
||||||
builder.and(mapSheetAnalDataGeomEntity.classBeforeCd.eq(searchGeoReq.getCompareClass()));
|
builder.and(
|
||||||
|
mapSheetAnalDataGeomEntity
|
||||||
|
.classBeforeCd
|
||||||
|
.toLowerCase()
|
||||||
|
.eq(searchGeoReq.getCompareClass().toLowerCase()));
|
||||||
}
|
}
|
||||||
|
|
||||||
// 분석도엽
|
// 분석도엽
|
||||||
|
|||||||
Reference in New Issue
Block a user