yangys
2024-03-31 2969df3e404db3cd116f27db1495e523ce05bf86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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;
    }
}