Fixed bug

This commit is contained in:
CalDescent 2022-11-26 19:06:02 +00:00
parent a75fd14e45
commit 3965f24ab5

View File

@ -13,15 +13,15 @@ import java.util.List;
@XmlAccessorType(XmlAccessType.FIELD)
public class AccountPenaltyStats {
public int totalPenalties;
public int maxPenalty;
public int minPenalty;
public Integer totalPenalties;
public Integer maxPenalty;
public Integer minPenalty;
public String penaltyHash;
protected AccountPenaltyStats() {
}
public AccountPenaltyStats(int totalPenalties, int maxPenalty, int minPenalty, String penaltyHash) {
public AccountPenaltyStats(Integer totalPenalties, Integer maxPenalty, Integer minPenalty, String penaltyHash) {
this.totalPenalties = totalPenalties;
this.maxPenalty = maxPenalty;
this.minPenalty = minPenalty;