mirror of https://github.com/hykilpikonna/AquaDX
[F] export api and game api leaking lastClientId
parent
9ef0d0edfb
commit
fc10c05731
|
@ -114,5 +114,6 @@ public class ExternalUserData {
|
||||||
|
|
||||||
private String lastAllNetId;
|
private String lastAllNetId;
|
||||||
|
|
||||||
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
private String lastClientId;
|
private String lastClientId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -114,5 +114,6 @@ public class ExternalUserData {
|
||||||
|
|
||||||
private String lastAllNetId;
|
private String lastAllNetId;
|
||||||
|
|
||||||
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
private String lastClientId;
|
private String lastClientId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package icu.samnyan.aqua.api.model.resp.sega.maimai2.external;
|
package icu.samnyan.aqua.api.model.resp.sega.maimai2.external;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
|
@ -49,6 +50,7 @@ public class ExternalUserData implements Serializable {
|
||||||
private int lastAllNetId;
|
private int lastAllNetId;
|
||||||
private int lastRegionId;
|
private int lastRegionId;
|
||||||
private String lastRegionName;
|
private String lastRegionName;
|
||||||
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
private String lastClientId;
|
private String lastClientId;
|
||||||
private String lastCountryCode;
|
private String lastCountryCode;
|
||||||
private int lastSelectEMoney;
|
private int lastSelectEMoney;
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
package icu.samnyan.aqua.api.model.resp.sega.ongeki.external;
|
package icu.samnyan.aqua.api.model.resp.sega.ongeki.external;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||||
import lombok.AllArgsConstructor;
|
import lombok.AllArgsConstructor;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
import lombok.NoArgsConstructor;
|
import lombok.NoArgsConstructor;
|
||||||
|
@ -124,6 +125,7 @@ public class ExternalUserData implements Serializable {
|
||||||
|
|
||||||
private int lastAllNetId;
|
private int lastAllNetId;
|
||||||
|
|
||||||
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
private String lastClientId;
|
private String lastClientId;
|
||||||
|
|
||||||
private int lastUsedDeckId;
|
private int lastUsedDeckId;
|
||||||
|
|
|
@ -183,5 +183,6 @@ public class UserData implements Serializable {
|
||||||
|
|
||||||
private String lastAllNetId;
|
private String lastAllNetId;
|
||||||
|
|
||||||
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
private String lastClientId;
|
private String lastClientId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -223,6 +223,7 @@ public class Chu3UserData implements Serializable, IUserData {
|
||||||
|
|
||||||
private String lastAllNetId;
|
private String lastAllNetId;
|
||||||
|
|
||||||
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
private String lastClientId;
|
private String lastClientId;
|
||||||
|
|
||||||
private String lastCountryCode;
|
private String lastCountryCode;
|
||||||
|
|
|
@ -117,6 +117,7 @@ public class UserData implements Serializable {
|
||||||
|
|
||||||
private String lastRegionName;
|
private String lastRegionName;
|
||||||
|
|
||||||
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
private String lastClientId;
|
private String lastClientId;
|
||||||
|
|
||||||
private String lastCountryCode;
|
private String lastCountryCode;
|
||||||
|
|
|
@ -70,6 +70,8 @@ class Mai2UserDetail(
|
||||||
var lastAllNetId: Int = 0,
|
var lastAllNetId: Int = 0,
|
||||||
var lastRegionId: Int = 0,
|
var lastRegionId: Int = 0,
|
||||||
var lastRegionName: String = "",
|
var lastRegionName: String = "",
|
||||||
|
|
||||||
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
override var lastClientId: String = "",
|
override var lastClientId: String = "",
|
||||||
var lastCountryCode: String = "",
|
var lastCountryCode: String = "",
|
||||||
var lastSelectEMoney: Int = 0,
|
var lastSelectEMoney: Int = 0,
|
||||||
|
|
|
@ -150,6 +150,7 @@ public class UserData implements Serializable, IUserData {
|
||||||
|
|
||||||
private int lastAllNetId;
|
private int lastAllNetId;
|
||||||
|
|
||||||
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
private String lastClientId;
|
private String lastClientId;
|
||||||
|
|
||||||
private int lastUsedDeckId;
|
private int lastUsedDeckId;
|
||||||
|
|
Loading…
Reference in New Issue