feat: add stand and get game features to blackjack game
This commit is contained in:
parent
4e8530c861
commit
d90fcdcf1e
13 changed files with 446 additions and 32 deletions
|
@ -19,6 +19,10 @@ public class CardEntity {
|
|||
@JsonIgnore
|
||||
private Long id;
|
||||
|
||||
@Version
|
||||
@JsonIgnore
|
||||
private Long version;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "game_id", nullable = false)
|
||||
@JsonBackReference
|
||||
|
|
Reference in a new issue