라벨링 툴 detail 에 상태 추가

This commit is contained in:
2026-01-21 15:38:24 +09:00
parent ea9d474104
commit 3553567f4f
6 changed files with 8 additions and 4 deletions

View File

@@ -591,6 +591,7 @@ public class TrainingDataLabelRepositoryImpl extends QuerydslRepositorySupport
.afterCogUrl(afterCogUrl) .afterCogUrl(afterCogUrl)
.mapBox(mapBbox) .mapBox(mapBbox)
.learnGeometries(learnDataList) // learnGeometry -> learnGeometries .learnGeometries(learnDataList) // learnGeometry -> learnGeometries
.labelState(assignment.toDto().getWorkState())
.build(); .build();
} catch (Exception e) { } catch (Exception e) {

View File

@@ -619,6 +619,7 @@ public class TrainingDataReviewRepositoryImpl extends QuerydslRepositorySupport
.afterCogUrl(afterCogUrl) .afterCogUrl(afterCogUrl)
.mapBox(mapBbox) .mapBox(mapBbox)
.learnGeometries(learnDataList) // learnGeometry -> learnGeometries .learnGeometries(learnDataList) // learnGeometry -> learnGeometries
.inspectState(assignment.toDto().getInspectState())
.build(); .build();
} catch (Exception e) { } catch (Exception e) {

View File

@@ -333,8 +333,6 @@ public class TrainingDataLabelApiController {
trainingDataLabelService.getDefaultPagingNumber(userId, size, assignmentUid)); trainingDataLabelService.getDefaultPagingNumber(userId, size, assignmentUid));
} }
// 이번 범위에서는 새로운 폴리곤 추가하지 않는다고 하여 Hidden
@Hidden
@Operation( @Operation(
summary = "새로운 polygon(들) 추가 저장", summary = "새로운 polygon(들) 추가 저장",
description = "탐지결과 외 새로운 polygon을 추가로 저장합니다. 단일 또는 여러 개를 저장할 수 있습니다.") description = "탐지결과 외 새로운 polygon을 추가로 저장합니다. 단일 또는 여러 개를 저장할 수 있습니다.")

View File

@@ -335,8 +335,6 @@ public class TrainingDataReviewApiController {
trainingDataReviewService.getDefaultPagingNumber(userId, size, operatorUid)); trainingDataReviewService.getDefaultPagingNumber(userId, size, operatorUid));
} }
// 이번 범위에서는 새로운 폴리곤 추가하지 않는다고 하여 Hidden
@Hidden
@Operation( @Operation(
summary = "새로운 polygon(들) 추가 저장", summary = "새로운 polygon(들) 추가 저장",
description = "탐지결과 외 새로운 polygon을 추가로 저장합니다. 단일 또는 여러 개를 저장할 수 있습니다.") description = "탐지결과 외 새로운 polygon을 추가로 저장합니다. 단일 또는 여러 개를 저장할 수 있습니다.")

View File

@@ -326,6 +326,9 @@ public class TrainingDataLabelDto {
@Schema(description = "라벨링 툴에서 그린 폴리곤들 (여러 개 가능)") @Schema(description = "라벨링 툴에서 그린 폴리곤들 (여러 개 가능)")
private List<LearnDataGeometry> learnGeometries; private List<LearnDataGeometry> learnGeometries;
@Schema(description = "라벨 상태")
private String labelState;
} }
@Schema(name = "ChangeDetectionInfo", description = "변화탐지정보") @Schema(name = "ChangeDetectionInfo", description = "변화탐지정보")

View File

@@ -319,6 +319,9 @@ public class TrainingDataReviewDto {
@Schema(description = "검수 시 추가/수정한 폴리곤들 (여러 개 가능)") @Schema(description = "검수 시 추가/수정한 폴리곤들 (여러 개 가능)")
private List<LearnDataGeometry> learnGeometries; private List<LearnDataGeometry> learnGeometries;
@Schema(description = "검수 상태")
private String inspectState;
} }
@Schema(name = "ChangeDetectionInfo", description = "변화탐지정보") @Schema(name = "ChangeDetectionInfo", description = "변화탐지정보")