From 7afb13a35b5bf479bcc0c0df7634aa3034a397b8 Mon Sep 17 00:00:00 2001 From: LeeJaehyung <122717063+LeeJae-H@users.noreply.github.com> Date: Wed, 18 Sep 2024 03:24:52 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20OpenChatType=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/gt/genti/openchat/model/OpenChatType.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/genti-domain/src/main/java/com/gt/genti/openchat/model/OpenChatType.java b/genti-domain/src/main/java/com/gt/genti/openchat/model/OpenChatType.java index aa10e5b..87b3817 100644 --- a/genti-domain/src/main/java/com/gt/genti/openchat/model/OpenChatType.java +++ b/genti-domain/src/main/java/com/gt/genti/openchat/model/OpenChatType.java @@ -9,8 +9,8 @@ @Getter @RequiredArgsConstructor public enum OpenChatType implements ConvertableEnum { - OB("OB", "중년층"), - YB("YB", "어린층"); + OB("OB", "OB"), + YB("YB", "YB"); private final String stringValue; private final String response;