뱅킹 상태 변경

This commit is contained in:
byung eun park 2019-10-28 17:20:04 +09:00
parent ac73b0ba26
commit f1e7bc69f2
2 changed files with 12 additions and 12 deletions

View File

@ -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
}

View File

@ -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"))