[KC-116] 추론 다운로드 이력 수정

This commit is contained in:
2026-01-19 19:48:18 +09:00
parent 932fa25180
commit 9e7ed0e53f
9 changed files with 82 additions and 58 deletions

View File

@@ -6,6 +6,10 @@ import com.fasterxml.jackson.databind.node.ObjectNode;
import java.io.FileWriter;
import java.io.IOException;
import java.util.List;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import org.locationtech.jts.geom.Geometry;
/** GeoJSON 파일 생성 유틸리티 */
@@ -154,4 +158,14 @@ public class GeoJsonFileWriter {
return filePath + "/" + fileName;
}
}
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
public static class Scene {
List<ImageFeature> features;
String filePath;
}
}