Fix matches results updater
This commit is contained in:
@@ -15,6 +15,8 @@ public abstract class BaseMatch {
|
||||
protected Integer goalsGuest = null;
|
||||
protected Integer goalsOvertimeHome = null;
|
||||
protected Integer goalsOvertimeGuest = null;
|
||||
protected Integer goalsPenaltyHome = null;
|
||||
protected Integer goalsPenaltyGuest = null;
|
||||
protected Integer matchday = null;
|
||||
protected String matchDatetime = null;
|
||||
|
||||
@@ -52,6 +54,14 @@ public abstract class BaseMatch {
|
||||
return this.goalsOvertimeGuest;
|
||||
}
|
||||
|
||||
public Integer getGoalsPenaltyHome() {
|
||||
return this.goalsPenaltyHome;
|
||||
}
|
||||
|
||||
public Integer getGoalsPenaltyGuest() {
|
||||
return this.goalsPenaltyGuest;
|
||||
}
|
||||
|
||||
public String getTeamNameHome() {
|
||||
return this.teamNameHome;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user