yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package com.qianwen.smartman.modules.system.dto;
 
import cn.hutool.json.JSONObject;
import java.util.List;
import java.util.Map;
import com.qianwen.smartman.modules.system.vo.CustomTemplateFieldRelationVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/ExcelImportDTO.class */
public class ExcelImportDTO {
    List<Map<String, String>> data;
    Map<String, CustomTemplateFieldRelationVO> relationVOMap;
    List<JSONObject> jsonObjects;
 
    public void setData(final List<Map<String, String>> data) {
        this.data = data;
    }
 
    public void setRelationVOMap(final Map<String, CustomTemplateFieldRelationVO> relationVOMap) {
        this.relationVOMap = relationVOMap;
    }
 
    public void setJsonObjects(final List<JSONObject> jsonObjects) {
        this.jsonObjects = jsonObjects;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ExcelImportDTO) {
            ExcelImportDTO other = (ExcelImportDTO) o;
            if (other.canEqual(this)) {
                Object this$data = getData();
                Object other$data = other.getData();
                if (this$data == null) {
                    if (other$data != null) {
                        return false;
                    }
                } else if (!this$data.equals(other$data)) {
                    return false;
                }
                Object this$relationVOMap = getRelationVOMap();
                Object other$relationVOMap = other.getRelationVOMap();
                if (this$relationVOMap == null) {
                    if (other$relationVOMap != null) {
                        return false;
                    }
                } else if (!this$relationVOMap.equals(other$relationVOMap)) {
                    return false;
                }
                Object this$jsonObjects = getJsonObjects();
                Object other$jsonObjects = other.getJsonObjects();
                return this$jsonObjects == null ? other$jsonObjects == null : this$jsonObjects.equals(other$jsonObjects);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof ExcelImportDTO;
    }
 
    public int hashCode() {
        Object $data = getData();
        int result = (1 * 59) + ($data == null ? 43 : $data.hashCode());
        Object $relationVOMap = getRelationVOMap();
        int result2 = (result * 59) + ($relationVOMap == null ? 43 : $relationVOMap.hashCode());
        Object $jsonObjects = getJsonObjects();
        return (result2 * 59) + ($jsonObjects == null ? 43 : $jsonObjects.hashCode());
    }
 
    public String toString() {
        return "ExcelImportDTO(data=" + getData() + ", relationVOMap=" + getRelationVOMap() + ", jsonObjects=" + getJsonObjects() + ")";
    }
 
    public List<Map<String, String>> getData() {
        return this.data;
    }
 
    public Map<String, CustomTemplateFieldRelationVO> getRelationVOMap() {
        return this.relationVOMap;
    }
 
    public List<JSONObject> getJsonObjects() {
        return this.jsonObjects;
    }
}