package com.qianwen.core.tool.support;
|
|
import java.util.HashMap;
|
import java.util.HashSet;
|
import java.util.Map;
|
import java.util.Set;
|
import com.qianwen.core.tool.utils.StringPool;
|
|
/* loaded from: blade-core-tool-9.3.0.0-SNAPSHOT.jar:org/springblade/core/tool/support/BeanDiff.class */
|
public class BeanDiff {
|
private final Set<String> fields = new HashSet();
|
private final Map<String, Object> oldValues = new HashMap();
|
private final Map<String, Object> newValues = new HashMap();
|
|
public String toString() {
|
return "BeanDiff(fields=" + getFields() + ", oldValues=" + getOldValues() + ", newValues=" + getNewValues() + StringPool.RIGHT_BRACKET;
|
}
|
|
public Set<String> getFields() {
|
return this.fields;
|
}
|
|
public Map<String, Object> getOldValues() {
|
return this.oldValues;
|
}
|
|
public Map<String, Object> getNewValues() {
|
return this.newValues;
|
}
|
}
|