From 26f8b8cd938b71a9ef090a21a76e7980a247b218 Mon Sep 17 00:00:00 2001 From: Jo Kyung Hyeon Date: Tue, 10 Jan 2023 17:03:53 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20(#281)=20Value=20Object=20=ED=8C=A8?= =?UTF-8?q?=ED=82=A4=EC=A7=80=20=EC=9D=B4=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/holiday/model/{ => value}/HolidayQueryType.kt | 2 +- .../simtong/domain/holiday/model/{ => value}/HolidayStatus.kt | 2 +- .../simtong/domain/holiday/model/{ => value}/HolidayType.kt | 2 +- .../domain/notification/model/{ => value}/NotificationType.kt | 3 ++- .../comit/simtong/domain/schedule/model/{ => value}/Scope.kt | 2 +- .../comit/simtong/domain/user/model/{ => value}/Authority.kt | 2 +- .../comit/simtong/domain/user/model}/value/EmployeeNumber.kt | 2 +- .../team/comit/simtong/domain/user/model}/value/NickName.kt | 2 +- .../team/comit/simtong/domain/user/model}/value/Password.kt | 2 +- 9 files changed, 10 insertions(+), 9 deletions(-) rename simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/{ => value}/HolidayQueryType.kt (90%) rename simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/{ => value}/HolidayStatus.kt (83%) rename simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/{ => value}/HolidayType.kt (81%) rename simtong-domain/src/main/kotlin/team/comit/simtong/domain/notification/model/{ => value}/NotificationType.kt (84%) rename simtong-domain/src/main/kotlin/team/comit/simtong/domain/schedule/model/{ => value}/Scope.kt (81%) rename simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/{ => value}/Authority.kt (88%) rename {simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user => simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model}/value/EmployeeNumber.kt (85%) rename {simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user => simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model}/value/NickName.kt (90%) rename {simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user => simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model}/value/Password.kt (91%) diff --git a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/HolidayQueryType.kt b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/value/HolidayQueryType.kt similarity index 90% rename from simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/HolidayQueryType.kt rename to simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/value/HolidayQueryType.kt index 2f2f3c8c..cd2f183c 100644 --- a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/HolidayQueryType.kt +++ b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/value/HolidayQueryType.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.holiday.model +package team.comit.simtong.domain.holiday.model.value /** * diff --git a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/HolidayStatus.kt b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/value/HolidayStatus.kt similarity index 83% rename from simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/HolidayStatus.kt rename to simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/value/HolidayStatus.kt index 380143ab..3ef1d731 100644 --- a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/HolidayStatus.kt +++ b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/value/HolidayStatus.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.holiday.model +package team.comit.simtong.domain.holiday.model.value /** * diff --git a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/HolidayType.kt b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/value/HolidayType.kt similarity index 81% rename from simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/HolidayType.kt rename to simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/value/HolidayType.kt index 665f5203..89ccdc95 100644 --- a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/HolidayType.kt +++ b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/holiday/model/value/HolidayType.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.holiday.model +package team.comit.simtong.domain.holiday.model.value /** * diff --git a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/notification/model/NotificationType.kt b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/notification/model/value/NotificationType.kt similarity index 84% rename from simtong-domain/src/main/kotlin/team/comit/simtong/domain/notification/model/NotificationType.kt rename to simtong-domain/src/main/kotlin/team/comit/simtong/domain/notification/model/value/NotificationType.kt index b8d0dde5..7f8964cc 100644 --- a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/notification/model/NotificationType.kt +++ b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/notification/model/value/NotificationType.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.notification.model +package team.comit.simtong.domain.notification.model.value /** * @@ -24,4 +24,5 @@ enum class NotificationType { * 일정 관련 알림 */ SCHEDULE + } \ No newline at end of file diff --git a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/schedule/model/Scope.kt b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/schedule/model/value/Scope.kt similarity index 81% rename from simtong-domain/src/main/kotlin/team/comit/simtong/domain/schedule/model/Scope.kt rename to simtong-domain/src/main/kotlin/team/comit/simtong/domain/schedule/model/value/Scope.kt index 9d85d28c..2a7ae86d 100644 --- a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/schedule/model/Scope.kt +++ b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/schedule/model/value/Scope.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.schedule.model +package team.comit.simtong.domain.schedule.model.value /** * diff --git a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/Authority.kt b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/Authority.kt similarity index 88% rename from simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/Authority.kt rename to simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/Authority.kt index a3d139e3..a9ad7e50 100644 --- a/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/Authority.kt +++ b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/Authority.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.user.model +package team.comit.simtong.domain.user.model.value /** * diff --git a/simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user/value/EmployeeNumber.kt b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/EmployeeNumber.kt similarity index 85% rename from simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user/value/EmployeeNumber.kt rename to simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/EmployeeNumber.kt index ed2d5e60..15c28061 100644 --- a/simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user/value/EmployeeNumber.kt +++ b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/EmployeeNumber.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.user.value +package team.comit.simtong.domain.user.model.value /** * diff --git a/simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user/value/NickName.kt b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/NickName.kt similarity index 90% rename from simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user/value/NickName.kt rename to simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/NickName.kt index 8b4b2ebc..efb5d7ad 100644 --- a/simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user/value/NickName.kt +++ b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/NickName.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.user.value +package team.comit.simtong.domain.user.model.value /** * diff --git a/simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user/value/Password.kt b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/Password.kt similarity index 91% rename from simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user/value/Password.kt rename to simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/Password.kt index 5705ea16..567b33ad 100644 --- a/simtong-presentation/src/main/kotlin/team/comit/simtong/domain/user/value/Password.kt +++ b/simtong-domain/src/main/kotlin/team/comit/simtong/domain/user/model/value/Password.kt @@ -1,4 +1,4 @@ -package team.comit.simtong.domain.user.value +package team.comit.simtong.domain.user.model.value /** *