라벨링 툴 라벨 저장 로직 수정

This commit is contained in:
2026-01-14 17:25:54 +09:00
parent 3bb85b4130
commit adcf8f0a8d
6 changed files with 187 additions and 169 deletions

View File

@@ -96,12 +96,12 @@ public class TrainingDataLabelDto {
}
}
@Schema(name = "GeoFeatureRequest", description = "polygon 저장")
@Schema(name = "LabelFeatureRequest", description = "polygon 저장")
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public static class GeoFeatureRequest {
public static class LabelFeatureRequest {
@Schema(description = "assignmentUid", example = "4f9ebc8b-6635-4177-b42f-7efc9c7b4c02")
private String assignmentUid;
@@ -148,10 +148,10 @@ public class TrainingDataLabelDto {
""")
private Geometry geometry;
private Properties properties;
private LabelProperties properties;
@Getter
public static class Properties {
public static class LabelProperties {
@Schema(description = "beforeClass", example = "WASTE")
private String beforeClass;