feat/infer_dev_260107 #30

Merged
teddy merged 3 commits from feat/infer_dev_260107 into develop 2026-01-30 21:05:04 +09:00
3 changed files with 10 additions and 2 deletions
Showing only changes of commit 9a00c38cc7 - Show all commits

View File

@@ -103,6 +103,9 @@ public class MapSheetMngDto {
@Schema(description = "tag") @Schema(description = "tag")
private String tag; private String tag;
@Schema(description = "crs 좌표계")
private String crs;
@JsonIgnore private Long createdUid; @JsonIgnore private Long createdUid;
} }

View File

@@ -45,6 +45,9 @@ public class MapSheetMngTileEntity {
@Column(name = "tag") @Column(name = "tag")
private String tag; private String tag;
@Column(name = "crs")
private String crs;
@NotNull @NotNull
@ColumnDefault("now()") @ColumnDefault("now()")
@Column(name = "created_dttm", nullable = false) @Column(name = "created_dttm", nullable = false)

View File

@@ -1056,7 +1056,8 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
mapSheetMngTileEntity.maxLat, mapSheetMngTileEntity.maxLat,
mapSheetMngTileEntity.minZoom, mapSheetMngTileEntity.minZoom,
mapSheetMngTileEntity.maxZoom, mapSheetMngTileEntity.maxZoom,
mapSheetMngTileEntity.tag) mapSheetMngTileEntity.tag,
mapSheetMngTileEntity.crs)
.values( .values(
addReq.getMngYyyy(), addReq.getMngYyyy(),
addReq.getUrl(), addReq.getUrl(),
@@ -1066,7 +1067,8 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
addReq.getMaxLat(), addReq.getMaxLat(),
addReq.getMinZoom(), addReq.getMinZoom(),
addReq.getMaxZoom(), addReq.getMaxZoom(),
addReq.getTag()) addReq.getTag(),
addReq.getCrs())
.execute(); .execute();
} }