라벨링 툴 detail 에 상태값 명칭 수정

This commit is contained in:
2026-01-22 10:54:41 +09:00
parent c70abbdb6d
commit 299bc0b401
2 changed files with 2 additions and 2 deletions

View File

@@ -591,7 +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()) .workState(assignment.toDto().getWorkState())
.build(); .build();
} catch (Exception e) { } catch (Exception e) {

View File

@@ -328,7 +328,7 @@ public class TrainingDataLabelDto {
private List<LearnDataGeometry> learnGeometries; private List<LearnDataGeometry> learnGeometries;
@Schema(description = "라벨 상태") @Schema(description = "라벨 상태")
private String labelState; private String workState;
} }
@Schema(name = "ChangeDetectionInfo", description = "변화탐지정보") @Schema(name = "ChangeDetectionInfo", description = "변화탐지정보")