From f262efd30e130df274ab7c8117807dbaa7051ed2 Mon Sep 17 00:00:00 2001 From: kimjiisuuu Date: Wed, 26 Jun 2024 15:55:53 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A0=88=EC=9D=B4=EC=95=84=EC=9B=83/=ED=94=84?= =?UTF-8?q?=EB=A1=9C=EC=A0=9D=ED=8A=B8=ED=8C=A8=ED=82=A4=EC=A7=80=20?= =?UTF-8?q?=EC=A0=95=EB=A0=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/example/healthylife/controller/LoginController.java | 4 ---- .../java/com/example/healthylife/entity/ChallengeEntity.java | 4 ---- .../java/com/example/healthylife/entity/ExerciseEntity.java | 4 ---- src/main/java/com/example/healthylife/entity/FoodEntity.java | 4 ---- .../{serviceImpl => service/Impl}/CommunityCommentsImpl.java | 2 +- .../{serviceImpl => service/Impl}/CommunityServiceImpl.java | 2 +- 6 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 src/main/java/com/example/healthylife/controller/LoginController.java delete mode 100644 src/main/java/com/example/healthylife/entity/ChallengeEntity.java delete mode 100644 src/main/java/com/example/healthylife/entity/ExerciseEntity.java delete mode 100644 src/main/java/com/example/healthylife/entity/FoodEntity.java rename src/main/java/com/example/healthylife/{serviceImpl => service/Impl}/CommunityCommentsImpl.java (96%) rename src/main/java/com/example/healthylife/{serviceImpl => service/Impl}/CommunityServiceImpl.java (95%) diff --git a/src/main/java/com/example/healthylife/controller/LoginController.java b/src/main/java/com/example/healthylife/controller/LoginController.java deleted file mode 100644 index 123f6a0..0000000 --- a/src/main/java/com/example/healthylife/controller/LoginController.java +++ /dev/null @@ -1,4 +0,0 @@ -package com.example.healthylife.controller; - -public class LoginController { -} diff --git a/src/main/java/com/example/healthylife/entity/ChallengeEntity.java b/src/main/java/com/example/healthylife/entity/ChallengeEntity.java deleted file mode 100644 index 5615cbe..0000000 --- a/src/main/java/com/example/healthylife/entity/ChallengeEntity.java +++ /dev/null @@ -1,4 +0,0 @@ -package com.example.healthylife.entity; - -public class ChallengeEntity { -} diff --git a/src/main/java/com/example/healthylife/entity/ExerciseEntity.java b/src/main/java/com/example/healthylife/entity/ExerciseEntity.java deleted file mode 100644 index 6b7d0fe..0000000 --- a/src/main/java/com/example/healthylife/entity/ExerciseEntity.java +++ /dev/null @@ -1,4 +0,0 @@ -package com.example.healthylife.entity; - -public class ExerciseEntity { -} diff --git a/src/main/java/com/example/healthylife/entity/FoodEntity.java b/src/main/java/com/example/healthylife/entity/FoodEntity.java deleted file mode 100644 index 2fef449..0000000 --- a/src/main/java/com/example/healthylife/entity/FoodEntity.java +++ /dev/null @@ -1,4 +0,0 @@ -package com.example.healthylife.entity; - -public class FoodEntity { -} diff --git a/src/main/java/com/example/healthylife/serviceImpl/CommunityCommentsImpl.java b/src/main/java/com/example/healthylife/service/Impl/CommunityCommentsImpl.java similarity index 96% rename from src/main/java/com/example/healthylife/serviceImpl/CommunityCommentsImpl.java rename to src/main/java/com/example/healthylife/service/Impl/CommunityCommentsImpl.java index cac3313..3dff1b1 100644 --- a/src/main/java/com/example/healthylife/serviceImpl/CommunityCommentsImpl.java +++ b/src/main/java/com/example/healthylife/service/Impl/CommunityCommentsImpl.java @@ -1,4 +1,4 @@ -package com.example.healthylife.serviceImpl; +package com.example.healthylife.service.Impl; import com.example.healthylife.entity.CommunityCommentsEntity; import com.example.healthylife.repository.CommunityCommentsRepository; diff --git a/src/main/java/com/example/healthylife/serviceImpl/CommunityServiceImpl.java b/src/main/java/com/example/healthylife/service/Impl/CommunityServiceImpl.java similarity index 95% rename from src/main/java/com/example/healthylife/serviceImpl/CommunityServiceImpl.java rename to src/main/java/com/example/healthylife/service/Impl/CommunityServiceImpl.java index caa7cff..0833844 100644 --- a/src/main/java/com/example/healthylife/serviceImpl/CommunityServiceImpl.java +++ b/src/main/java/com/example/healthylife/service/Impl/CommunityServiceImpl.java @@ -1,4 +1,4 @@ -package com.example.healthylife.serviceImpl; +package com.example.healthylife.service.Impl; import com.example.healthylife.entity.CommunityEntity; import com.example.healthylife.repository.CommunityRepository;