|
@ -22,7 +22,7 @@ public class DonateStat { |
|
|
String reserved; |
|
|
String reserved; |
|
|
@JsonIgnore |
|
|
@JsonIgnore |
|
|
boolean extended; |
|
|
boolean extended; |
|
|
int utime; |
|
|
long utime; |
|
|
|
|
|
|
|
|
public DonateStat(Object[] obj) { |
|
|
public DonateStat(Object[] obj) { |
|
|
this.id = (int) obj[0]; |
|
|
this.id = (int) obj[0]; |
|
@ -31,7 +31,7 @@ public class DonateStat { |
|
|
this.giveMethod = VipGiveMethod.values()[(int) obj[4]]; |
|
|
this.giveMethod = VipGiveMethod.values()[(int) obj[4]]; |
|
|
this.reserved = String.valueOf(obj[5]); |
|
|
this.reserved = String.valueOf(obj[5]); |
|
|
this.extended = (boolean) obj[6]; |
|
|
this.extended = (boolean) obj[6]; |
|
|
this.utime = (int) obj[7]; |
|
|
this.utime = (long) obj[7]; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public DonateStat(Integer rubles, Integer keys, Integer refs) { |
|
|
public DonateStat(Integer rubles, Integer keys, Integer refs) { |
|
|