feat: 游戏房间

This commit is contained in:
2026-06-22 11:19:19 +08:00
parent 4267445256
commit 6d90c21b44
7 changed files with 63 additions and 3 deletions

View File

@@ -74,4 +74,10 @@ public class UserEntity extends UUIDBaseEntity {
*/
@Column(name = "balance", nullable = false)
private Long balance = 1000L;
/**
* 在线状态ONLINE / AWAY / DND / INVISIBLE默认 ONLINE
*/
@Column(name = "status", length = 16, nullable = false)
private String status = "ONLINE";
}