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")
|
@Schema(description = "tag")
|
||||||
private String tag;
|
private String tag;
|
||||||
|
|
||||||
|
@Schema(description = "crs 좌표계")
|
||||||
|
private String crs;
|
||||||
|
|
||||||
@JsonIgnore private Long createdUid;
|
@JsonIgnore private Long createdUid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
@@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user