From c856066907ed9017f66fa423c63f615e61507618 Mon Sep 17 00:00:00 2001 From: Lemonade255 Date: Wed, 8 Nov 2023 13:21:04 +0900 Subject: [PATCH] =?UTF-8?q?fix(BE):=20UUID=20=EC=96=B4=EB=85=B8=ED=85=8C?= =?UTF-8?q?=EC=9D=B4=EC=85=98=20=EC=98=A4=EB=A5=98=20=ED=95=B4=EA=B2=B0=20?= =?UTF-8?q?BUS-209-MVP1-bugfix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/example/api/matching/dto/LikeDto.java | 1 - .../com/example/api/matching/dto/SaveMatchingApplicationDto.java | 1 - .../java/com/example/api/preference/dto/UserPreferenceDto.java | 1 - 3 files changed, 3 deletions(-) diff --git a/src/main/java/com/example/api/matching/dto/LikeDto.java b/src/main/java/com/example/api/matching/dto/LikeDto.java index 8d83940..235c1c0 100644 --- a/src/main/java/com/example/api/matching/dto/LikeDto.java +++ b/src/main/java/com/example/api/matching/dto/LikeDto.java @@ -15,7 +15,6 @@ @AllArgsConstructor public class LikeDto { @NotNull - @org.hibernate.validator.constraints.UUID private UUID userid; @NotNull diff --git a/src/main/java/com/example/api/matching/dto/SaveMatchingApplicationDto.java b/src/main/java/com/example/api/matching/dto/SaveMatchingApplicationDto.java index 28aa84c..4de85bb 100644 --- a/src/main/java/com/example/api/matching/dto/SaveMatchingApplicationDto.java +++ b/src/main/java/com/example/api/matching/dto/SaveMatchingApplicationDto.java @@ -14,7 +14,6 @@ @NoArgsConstructor @AllArgsConstructor public class SaveMatchingApplicationDto { - @org.hibernate.validator.constraints.UUID private UUID userId; @NotNull diff --git a/src/main/java/com/example/api/preference/dto/UserPreferenceDto.java b/src/main/java/com/example/api/preference/dto/UserPreferenceDto.java index 7978925..3b726aa 100644 --- a/src/main/java/com/example/api/preference/dto/UserPreferenceDto.java +++ b/src/main/java/com/example/api/preference/dto/UserPreferenceDto.java @@ -14,7 +14,6 @@ @AllArgsConstructor public class UserPreferenceDto { @NotNull - @org.hibernate.validator.constraints.UUID private UUID userId; @NotNull