sud小游戏-门票-结算事件-roundId

This commit is contained in:
2025-08-06 11:22:26 +08:00
committed by hokli
parent 4835daef57
commit a05c4fa47d
3 changed files with 3 additions and 3 deletions

View File

@@ -9,7 +9,7 @@ import java.util.Date;
public class MiniGamePaidLudoSettlementRecord {
private String mgId;
private Long roundId;
private String roundId;
private Long roomUid;
private Long uid;
private BigDecimal ticket;

View File

@@ -198,7 +198,7 @@ public class MiniGameForNavSettleListener implements ApplicationListener<MiniGam
MiniGamePaidLudoSettlementRecord record = new MiniGamePaidLudoSettlementRecord();
record.setMgId(mgId);
record.setRoundId(miniGameMatchRound.getId());
record.setRoundId(miniGameMatchRound.getGameRoundId());
record.setRoomUid(roomId);
record.setUid(uid);
record.setTicket(BigDecimal.valueOf(gameModeDto.getTicket()));

View File

@@ -111,7 +111,7 @@ public class MiniGameLudoTicketService {
MiniGamePaidLudoSettlementRecord record = new MiniGamePaidLudoSettlementRecord();
record.setMgId(mgId);
record.setRoundId(Long.parseLong(gameRoundId));
record.setRoundId(gameRoundId);
record.setRoomUid(roomUid);
record.setUid(uid);
record.setTicket(ticket);