레이어관리 수정

This commit is contained in:
2026-01-30 21:03:50 +09:00
parent 96d7ea205c
commit e8fa7411d5
5 changed files with 48 additions and 12 deletions

View File

@@ -103,6 +103,9 @@ public class MapLayerEntity {
@Column(name = "is_deleted")
private Boolean isDeleted = false;
@Column(name = "crs")
private String crs;
public LayerDto.Detail toDto() {
return new LayerDto.Detail(
this.uuid,
@@ -120,6 +123,7 @@ public class MapLayerEntity {
this.maxLat,
this.minZoom,
this.maxZoom,
this.createdDttm);
this.createdDttm,
this.crs);
}
}