feat: 游戏房间

This commit is contained in:
2026-06-22 10:09:40 +08:00
parent b512d50c78
commit 4267445256
33 changed files with 1422 additions and 5 deletions

View File

@@ -68,4 +68,10 @@ public class UserEntity extends UUIDBaseEntity {
*/
@Column(name = "birthday")
private LocalDate birthday;
/**
* 金币余额,默认 1000
*/
@Column(name = "balance", nullable = false)
private Long balance = 1000L;
}