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 fields = new HashSet(); private final Map oldValues = new HashMap(); private final Map newValues = new HashMap(); public String toString() { return "BeanDiff(fields=" + getFields() + ", oldValues=" + getOldValues() + ", newValues=" + getNewValues() + StringPool.RIGHT_BRACKET; } public Set getFields() { return this.fields; } public Map getOldValues() { return this.oldValues; } public Map getNewValues() { return this.newValues; } }