라벨링 툴 detail 에 상태 추가
This commit is contained in:
@@ -591,6 +591,7 @@ public class TrainingDataLabelRepositoryImpl extends QuerydslRepositorySupport
|
||||
.afterCogUrl(afterCogUrl)
|
||||
.mapBox(mapBbox)
|
||||
.learnGeometries(learnDataList) // learnGeometry -> learnGeometries
|
||||
.labelState(assignment.toDto().getWorkState())
|
||||
.build();
|
||||
|
||||
} catch (Exception e) {
|
||||
|
||||
@@ -619,6 +619,7 @@ public class TrainingDataReviewRepositoryImpl extends QuerydslRepositorySupport
|
||||
.afterCogUrl(afterCogUrl)
|
||||
.mapBox(mapBbox)
|
||||
.learnGeometries(learnDataList) // learnGeometry -> learnGeometries
|
||||
.inspectState(assignment.toDto().getInspectState())
|
||||
.build();
|
||||
|
||||
} catch (Exception e) {
|
||||
|
||||
@@ -333,8 +333,6 @@ public class TrainingDataLabelApiController {
|
||||
trainingDataLabelService.getDefaultPagingNumber(userId, size, assignmentUid));
|
||||
}
|
||||
|
||||
// 이번 범위에서는 새로운 폴리곤 추가하지 않는다고 하여 Hidden
|
||||
@Hidden
|
||||
@Operation(
|
||||
summary = "새로운 polygon(들) 추가 저장",
|
||||
description = "탐지결과 외 새로운 polygon을 추가로 저장합니다. 단일 또는 여러 개를 저장할 수 있습니다.")
|
||||
|
||||
@@ -335,8 +335,6 @@ public class TrainingDataReviewApiController {
|
||||
trainingDataReviewService.getDefaultPagingNumber(userId, size, operatorUid));
|
||||
}
|
||||
|
||||
// 이번 범위에서는 새로운 폴리곤 추가하지 않는다고 하여 Hidden
|
||||
@Hidden
|
||||
@Operation(
|
||||
summary = "새로운 polygon(들) 추가 저장",
|
||||
description = "탐지결과 외 새로운 polygon을 추가로 저장합니다. 단일 또는 여러 개를 저장할 수 있습니다.")
|
||||
|
||||
@@ -326,6 +326,9 @@ public class TrainingDataLabelDto {
|
||||
|
||||
@Schema(description = "라벨링 툴에서 그린 폴리곤들 (여러 개 가능)")
|
||||
private List<LearnDataGeometry> learnGeometries;
|
||||
|
||||
@Schema(description = "라벨 상태")
|
||||
private String labelState;
|
||||
}
|
||||
|
||||
@Schema(name = "ChangeDetectionInfo", description = "변화탐지정보")
|
||||
|
||||
@@ -319,6 +319,9 @@ public class TrainingDataReviewDto {
|
||||
|
||||
@Schema(description = "검수 시 추가/수정한 폴리곤들 (여러 개 가능)")
|
||||
private List<LearnDataGeometry> learnGeometries;
|
||||
|
||||
@Schema(description = "검수 상태")
|
||||
private String inspectState;
|
||||
}
|
||||
|
||||
@Schema(name = "ChangeDetectionInfo", description = "변화탐지정보")
|
||||
|
||||
Reference in New Issue
Block a user