spotless
This commit is contained in:
@@ -57,7 +57,6 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
|
|||||||
QLabelingAssignmentEntity.labelingAssignmentEntity;
|
QLabelingAssignmentEntity.labelingAssignmentEntity;
|
||||||
private final QMemberEntity memberEntity = QMemberEntity.memberEntity;
|
private final QMemberEntity memberEntity = QMemberEntity.memberEntity;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 변화탐지 년도 셀렉트박스 조회
|
* 변화탐지 년도 셀렉트박스 조회
|
||||||
*
|
*
|
||||||
@@ -81,8 +80,7 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 라벨링 작업관리 목록 조회
|
* 라벨링 작업관리 목록 조회 (복잡한 집계 쿼리로 인해 DTO 직접 반환)
|
||||||
* (복잡한 집계 쿼리로 인해 DTO 직접 반환)
|
|
||||||
*
|
*
|
||||||
* @param searchReq 검색 조건
|
* @param searchReq 검색 조건
|
||||||
* @return 라벨링 작업관리 목록 페이지
|
* @return 라벨링 작업관리 목록 페이지
|
||||||
@@ -345,7 +343,9 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
|
|||||||
mapSheetAnalInferenceEntity
|
mapSheetAnalInferenceEntity
|
||||||
.uuid
|
.uuid
|
||||||
.eq(uuid)
|
.eq(uuid)
|
||||||
.and(labelingAssignmentEntity.analUid.eq(mapSheetAnalInferenceEntity.id)))
|
.and(
|
||||||
|
labelingAssignmentEntity.analUid.eq(
|
||||||
|
mapSheetAnalInferenceEntity.id)))
|
||||||
.innerJoin(memberEntity)
|
.innerJoin(memberEntity)
|
||||||
.on(whereSubBuilder)
|
.on(whereSubBuilder)
|
||||||
.where(whereBuilder)
|
.where(whereBuilder)
|
||||||
@@ -390,8 +390,7 @@ public class LabelWorkRepositoryImpl implements LabelWorkRepositoryCustom {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 작업배정 상세조회
|
* 작업배정 상세조회 (복잡한 집계 쿼리로 인해 DTO 직접 반환)
|
||||||
* (복잡한 집계 쿼리로 인해 DTO 직접 반환)
|
|
||||||
*
|
*
|
||||||
* @param uuid 작업배정 UUID
|
* @param uuid 작업배정 UUID
|
||||||
* @return 작업배정 상세 정보
|
* @return 작업배정 상세 정보
|
||||||
|
|||||||
Reference in New Issue
Block a user