Add beautiful output

This commit is contained in:
2020-10-25 14:33:49 +01:00
parent 6579d3c003
commit d8e70fb1b0
10 changed files with 93 additions and 39 deletions

View File

@@ -9,6 +9,8 @@ public abstract class BaseMatch {
protected Integer teamIdHome;
protected Integer teamIdGuest;
protected String teamNameHome = null;
protected String teamNameGuest = null;
protected Integer goalsHome = null;
protected Integer goalsGuest = null;
protected Integer matchday = null;
@@ -37,4 +39,12 @@ public abstract class BaseMatch {
public Integer getGoalsGuest() {
return this.goalsGuest;
}
public String getTeamNameHome() {
return this.teamNameHome;
}
public String getTeamNameGuest() {
return this.teamNameGuest;
}
}