HistorySynchronizer

This commit is contained in:
MaxKey
2021-05-25 23:28:48 +08:00
parent a154e435dd
commit 0306cc54bd
8 changed files with 234 additions and 2 deletions

View File

@@ -37,6 +37,9 @@ public class HistorySynchronizer extends JpaBaseEntity implements Serializable
@Column
String result;
String startDate;
String endDate;
public String getId() {
return id;
}
@@ -88,6 +91,19 @@ public class HistorySynchronizer extends JpaBaseEntity implements Serializable
public HistorySynchronizer() {
super();
}
public String getStartDate() {
return startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
@Override
public String toString() {
StringBuilder builder = new StringBuilder();