mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-10 11:37:32 +08:00
[F] Fix chusan playlog integer overflow
This commit is contained in:
@@ -8,6 +8,7 @@ import lombok.AllArgsConstructor;
|
|||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
|
|
||||||
|
import java.io.Serial;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
@@ -21,6 +22,7 @@ import java.time.LocalDateTime;
|
|||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
public class UserPlaylog implements Serializable, IGenericGamePlaylog {
|
public class UserPlaylog implements Serializable, IGenericGamePlaylog {
|
||||||
|
|
||||||
|
@Serial
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
@Id
|
@Id
|
||||||
@@ -50,11 +52,11 @@ public class UserPlaylog implements Serializable, IGenericGamePlaylog {
|
|||||||
|
|
||||||
private int customId;
|
private int customId;
|
||||||
|
|
||||||
private int playedUserId1;
|
private long playedUserId1;
|
||||||
|
|
||||||
private int playedUserId2;
|
private long playedUserId2;
|
||||||
|
|
||||||
private int playedUserId3;
|
private long playedUserId3;
|
||||||
|
|
||||||
private String playedUserName1;
|
private String playedUserName1;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user