추론결과 상세 목록 조회조건 수정
This commit is contained in:
@@ -420,14 +420,18 @@ public class MapSheetLearnRepositoryImpl implements MapSheetLearnRepositoryCusto
|
|||||||
|
|
||||||
if (searchGeoReq.getTargetClass() != null && !searchGeoReq.getTargetClass().isBlank()) {
|
if (searchGeoReq.getTargetClass() != null && !searchGeoReq.getTargetClass().isBlank()) {
|
||||||
where.and(
|
where.and(
|
||||||
mapSheetAnalDataInferenceGeomEntity.classAfterCd.eq(
|
mapSheetAnalDataInferenceGeomEntity
|
||||||
searchGeoReq.getTargetClass().toLowerCase()));
|
.classAfterCd
|
||||||
|
.toLowerCase()
|
||||||
|
.eq(searchGeoReq.getTargetClass().toLowerCase()));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (searchGeoReq.getCompareClass() != null && !searchGeoReq.getCompareClass().isBlank()) {
|
if (searchGeoReq.getCompareClass() != null && !searchGeoReq.getCompareClass().isBlank()) {
|
||||||
where.and(
|
where.and(
|
||||||
mapSheetAnalDataInferenceGeomEntity.classBeforeCd.eq(
|
mapSheetAnalDataInferenceGeomEntity
|
||||||
searchGeoReq.getCompareClass().toLowerCase()));
|
.classBeforeCd
|
||||||
|
.toLowerCase()
|
||||||
|
.eq(searchGeoReq.getCompareClass().toLowerCase()));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (searchGeoReq.getMapSheetNum() != null) {
|
if (searchGeoReq.getMapSheetNum() != null) {
|
||||||
|
|||||||
Reference in New Issue
Block a user