Skip to content

Commit

Permalink
[#38]Refactor: Change coordinate type to double in place related dto
Browse files Browse the repository at this point in the history
  • Loading branch information
gmkim20713 committed Feb 12, 2023
1 parent af1cb2f commit ae1bee8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ public class InfraPlaceDto {
private String name;

@Schema(description = "장소 x 좌표")
private Long x;
private Double x;

@Schema(description = "장소 y 좌표")
private Long y;
private Double y;

@Builder
public InfraPlaceDto(Place place){
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ public class ThemePlaceDto {
private String address;

@Schema(description = "장소 x 좌표")
private Long x;
private Double x;

@Schema(description = "장소 y 좌표")
private Long y;
private Double y;

@Builder
public ThemePlaceDto(Place place){
Expand Down

0 comments on commit ae1bee8

Please sign in to comment.