first commit

This commit is contained in:
hujun
2026-03-20 12:50:41 +08:00
commit 24fce055fd
88 changed files with 7655 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.xuezhanmaster.game.dto;
import java.util.List;
public record SelfSeatView(
int seatNo,
String playerId,
String nickname,
String lackSuit,
List<String> handTiles,
List<String> discardTiles
) {
}