라벨링 상세정보, 요약정보(Daniel), 저장(Gina)

This commit is contained in:
2026-01-12 14:36:08 +09:00
parent 3d612f75d7
commit fd7ec9ea9c
7 changed files with 775 additions and 9 deletions

View File

@@ -11,6 +11,10 @@ import org.springframework.util.StringUtils;
public class GeometryDeserializer<T extends Geometry> extends StdDeserializer<T> {
public GeometryDeserializer() {
super(Geometry.class);
}
public GeometryDeserializer(Class<T> targetType) {
super(targetType);
}