From f1e7bc69f2d23791c19ee8a9c183431400802bb1 Mon Sep 17 00:00:00 2001 From: byung eun park Date: Mon, 28 Oct 2019 17:20:04 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B1=85=ED=82=B9=20=EC=83=81=ED=83=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/special/type/AlertConfigName.java | 20 +++++++++---------- .../modules/user/entity/UserEntity.java | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main/java/com/totopia/server/modules/special/type/AlertConfigName.java b/src/main/java/com/totopia/server/modules/special/type/AlertConfigName.java index 07ed932..abfc402 100644 --- a/src/main/java/com/totopia/server/modules/special/type/AlertConfigName.java +++ b/src/main/java/com/totopia/server/modules/special/type/AlertConfigName.java @@ -1,14 +1,14 @@ package com.totopia.server.modules.special.type; public enum AlertConfigName { - ALERT_DEPOSIT, - ALERT_WITHDRAW, - ALERT_QNA_USER, - ALERT_NEW_USER, - ALERT_NEW_BOARD, - ALERT_WARNING_BETTING_LIMIT, - ALERT_BETTING, - ALERT_WATCH_USER, - ALERT_SEND_MESSAGE, - ALERT_ANSWER_MESSAGE + DEPOSIT, + WITHDRAW, + QNA_USER, + NEW_USER, + NEW_BOARD, + WARNING_BETTING_LIMIT, + BETTING, + WATCH_USER, + SEND_MESSAGE, + ANSWER_MESSAGE } diff --git a/src/main/java/com/totopia/server/modules/user/entity/UserEntity.java b/src/main/java/com/totopia/server/modules/user/entity/UserEntity.java index 9387d98..22fa755 100644 --- a/src/main/java/com/totopia/server/modules/user/entity/UserEntity.java +++ b/src/main/java/com/totopia/server/modules/user/entity/UserEntity.java @@ -78,8 +78,8 @@ public class UserEntity extends DateAuditEntity { private String otpKey; @Basic - @Column(name = "otep", nullable = true, length = 1000) - private String otep; + @Column(name = "otp", nullable = true, length = 1000) + private String otp; @ManyToMany(fetch = FetchType.EAGER) @JoinTable(name = "user_roles", joinColumns = @JoinColumn(name = "user_id"), inverseJoinColumns = @JoinColumn(name = "role_id"))