From faa614d090d8e2db548211cee3ebd66b7fa32d6d Mon Sep 17 00:00:00 2001 From: Due <48638700+Due-IT@users.noreply.github.com> Date: Sun, 24 Nov 2024 14:28:50 +0900 Subject: [PATCH] =?UTF-8?q?[Server]=20fix=20:=20=EB=A0=88=EC=8B=9C?= =?UTF-8?q?=ED=94=BC=20=EC=B9=B4=ED=85=8C=EA=B3=A0=EB=A6=AC=20=EC=9D=B4?= =?UTF-8?q?=EB=A6=84=20=EC=88=98=EC=A0=95=20(#67)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(AiRecipeRecommendClient) : 전체 카테고리에서 레시피를 추천 받는다 - 재료 추가/삭제시, 전체 카테고리 기준으로 레시피를 추천 받습니다. - 카테고리를 특정하여 레시피를 추천받는 ai측 api와 카테고리를 지정하지 않고 레시피를 추천 받는 api가 다름에 따라, 메서드를 분리하였습니다. * fix(RecipeCategory) : 카테고리 AI에 맞게 수정 --- .../banchango/recipe/domain/RecipeCategory.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Server/banchango/src/main/java/com/sundaegukbap/banchango/recipe/domain/RecipeCategory.java b/Server/banchango/src/main/java/com/sundaegukbap/banchango/recipe/domain/RecipeCategory.java index ceb51e4..9160817 100644 --- a/Server/banchango/src/main/java/com/sundaegukbap/banchango/recipe/domain/RecipeCategory.java +++ b/Server/banchango/src/main/java/com/sundaegukbap/banchango/recipe/domain/RecipeCategory.java @@ -15,8 +15,8 @@ public enum RecipeCategory { 양식(1, "양식"), 샐러드(1, "샐러드"), 스프(1, "스프"), - 빵_과자(1, "빵/과자"), - 과자_간식(1, "과자/간식"), + 빵(1, "빵"), + 과자(1, "과자"), 차_음료_술(1, "차/음료/술"), 일상(2, "일상"), 초스피드(2, "초스피드"), @@ -29,7 +29,7 @@ public enum RecipeCategory { 야식(2, "야식"), 푸드스타일링(2, "푸드스타일링"), 해장(2, "해장"), - 명절음식(2, "명절음식"), + 명절(2, "명절"), 이유식(2, "이유식"), 기타(2, "기타");