뱅킹 상태 변경
This commit is contained in:
parent
ac73b0ba26
commit
f1e7bc69f2
|
@ -1,14 +1,14 @@
|
||||||
package com.totopia.server.modules.special.type;
|
package com.totopia.server.modules.special.type;
|
||||||
|
|
||||||
public enum AlertConfigName {
|
public enum AlertConfigName {
|
||||||
ALERT_DEPOSIT,
|
DEPOSIT,
|
||||||
ALERT_WITHDRAW,
|
WITHDRAW,
|
||||||
ALERT_QNA_USER,
|
QNA_USER,
|
||||||
ALERT_NEW_USER,
|
NEW_USER,
|
||||||
ALERT_NEW_BOARD,
|
NEW_BOARD,
|
||||||
ALERT_WARNING_BETTING_LIMIT,
|
WARNING_BETTING_LIMIT,
|
||||||
ALERT_BETTING,
|
BETTING,
|
||||||
ALERT_WATCH_USER,
|
WATCH_USER,
|
||||||
ALERT_SEND_MESSAGE,
|
SEND_MESSAGE,
|
||||||
ALERT_ANSWER_MESSAGE
|
ANSWER_MESSAGE
|
||||||
}
|
}
|
||||||
|
|
|
@ -78,8 +78,8 @@ public class UserEntity extends DateAuditEntity {
|
||||||
private String otpKey;
|
private String otpKey;
|
||||||
|
|
||||||
@Basic
|
@Basic
|
||||||
@Column(name = "otep", nullable = true, length = 1000)
|
@Column(name = "otp", nullable = true, length = 1000)
|
||||||
private String otep;
|
private String otp;
|
||||||
|
|
||||||
@ManyToMany(fetch = FetchType.EAGER)
|
@ManyToMany(fetch = FetchType.EAGER)
|
||||||
@JoinTable(name = "user_roles", joinColumns = @JoinColumn(name = "user_id"), inverseJoinColumns = @JoinColumn(name = "role_id"))
|
@JoinTable(name = "user_roles", joinColumns = @JoinColumn(name = "user_id"), inverseJoinColumns = @JoinColumn(name = "role_id"))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user