From bb1f00d2335a4e42eb84b0c86a180a76523678d4 Mon Sep 17 00:00:00 2001 From: byung eun park Date: Sat, 26 Oct 2019 17:35:10 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B2=A0=ED=8C=85=20=ED=9E=88=EC=8A=A4?= =?UTF-8?q?=ED=86=A0=EB=A6=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../server/modules/game/entity/BettingHistoryEntity.java | 6 +++--- .../totopia/server/modules/game/type/BettingResultName.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/totopia/server/modules/game/entity/BettingHistoryEntity.java b/src/main/java/com/totopia/server/modules/game/entity/BettingHistoryEntity.java index d25f1bd..24b3209 100644 --- a/src/main/java/com/totopia/server/modules/game/entity/BettingHistoryEntity.java +++ b/src/main/java/com/totopia/server/modules/game/entity/BettingHistoryEntity.java @@ -1,8 +1,8 @@ package com.totopia.server.modules.game.entity; -import com.totopia.server.commons.data.entity.DateAuditEntity; +import com.totopia.server.commons.data.entity.UserDateAuditEntity; import com.totopia.server.modules.game.type.BettingResultName; -import com.totopia.server.modules.user.entity.RoleEntity; + import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; @@ -19,7 +19,7 @@ import java.util.Set; @NoArgsConstructor @AllArgsConstructor @Builder -public class BettingHistoryEntity extends DateAuditEntity { +public class BettingHistoryEntity extends UserDateAuditEntity { @Id @GeneratedValue(generator = "bet_history_generator") diff --git a/src/main/java/com/totopia/server/modules/game/type/BettingResultName.java b/src/main/java/com/totopia/server/modules/game/type/BettingResultName.java index 1f4db29..0f343ee 100644 --- a/src/main/java/com/totopia/server/modules/game/type/BettingResultName.java +++ b/src/main/java/com/totopia/server/modules/game/type/BettingResultName.java @@ -1,7 +1,7 @@ package com.totopia.server.modules.game.type; public enum BettingResultName { - BETTING_RESULT_WINNING, // 당첨 - BETTING_RESULT_FAILURE, // 실패 - BETTING_RESULT_INVALIDITY // 무효 + WINNING, // 당첨 + FAILURE, // 실패 + INVALIDITY // 무효 }