Merge remote-tracking branch 'origin/feat/infer_dev_260107' into feat/infer_dev_260107
This commit is contained in:
@@ -103,6 +103,9 @@ public class MapSheetMngDto {
|
||||
@Schema(description = "tag")
|
||||
private String tag;
|
||||
|
||||
@Schema(description = "crs 좌표계")
|
||||
private String crs;
|
||||
|
||||
@JsonIgnore private Long createdUid;
|
||||
}
|
||||
|
||||
|
||||
@@ -45,6 +45,9 @@ public class MapSheetMngTileEntity {
|
||||
@Column(name = "tag")
|
||||
private String tag;
|
||||
|
||||
@Column(name = "crs")
|
||||
private String crs;
|
||||
|
||||
@NotNull
|
||||
@ColumnDefault("now()")
|
||||
@Column(name = "created_dttm", nullable = false)
|
||||
|
||||
@@ -1056,7 +1056,8 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
|
||||
mapSheetMngTileEntity.maxLat,
|
||||
mapSheetMngTileEntity.minZoom,
|
||||
mapSheetMngTileEntity.maxZoom,
|
||||
mapSheetMngTileEntity.tag)
|
||||
mapSheetMngTileEntity.tag,
|
||||
mapSheetMngTileEntity.crs)
|
||||
.values(
|
||||
addReq.getMngYyyy(),
|
||||
addReq.getUrl(),
|
||||
@@ -1066,7 +1067,8 @@ public class MapSheetMngRepositoryImpl extends QuerydslRepositorySupport
|
||||
addReq.getMaxLat(),
|
||||
addReq.getMinZoom(),
|
||||
addReq.getMaxZoom(),
|
||||
addReq.getTag())
|
||||
addReq.getTag(),
|
||||
addReq.getCrs())
|
||||
.execute();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user