yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.coproduction.dto;
 
import java.util.Map;
import com.qianwen.smartman.modules.system.dto.CustomTemplateFieldRelationDTO;
import com.qianwen.smartman.modules.system.entity.CustomTemplate;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/dto/CheckParamDTO.class */
public class CheckParamDTO {
    private CustomTemplate customTemplate;
    private Map<String, CustomTemplateFieldRelationDTO> relationMap;
    private Map<String, String> specialData;
 
    public void setCustomTemplate(final CustomTemplate customTemplate) {
        this.customTemplate = customTemplate;
    }
 
    public void setRelationMap(final Map<String, CustomTemplateFieldRelationDTO> relationMap) {
        this.relationMap = relationMap;
    }
 
    public void setSpecialData(final Map<String, String> specialData) {
        this.specialData = specialData;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CheckParamDTO) {
            CheckParamDTO other = (CheckParamDTO) o;
            if (other.canEqual(this)) {
                Object this$customTemplate = getCustomTemplate();
                Object other$customTemplate = other.getCustomTemplate();
                if (this$customTemplate == null) {
                    if (other$customTemplate != null) {
                        return false;
                    }
                } else if (!this$customTemplate.equals(other$customTemplate)) {
                    return false;
                }
                Object this$relationMap = getRelationMap();
                Object other$relationMap = other.getRelationMap();
                if (this$relationMap == null) {
                    if (other$relationMap != null) {
                        return false;
                    }
                } else if (!this$relationMap.equals(other$relationMap)) {
                    return false;
                }
                Object this$specialData = getSpecialData();
                Object other$specialData = other.getSpecialData();
                return this$specialData == null ? other$specialData == null : this$specialData.equals(other$specialData);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CheckParamDTO;
    }
 
    public int hashCode() {
        Object $customTemplate = getCustomTemplate();
        int result = (1 * 59) + ($customTemplate == null ? 43 : $customTemplate.hashCode());
        Object $relationMap = getRelationMap();
        int result2 = (result * 59) + ($relationMap == null ? 43 : $relationMap.hashCode());
        Object $specialData = getSpecialData();
        return (result2 * 59) + ($specialData == null ? 43 : $specialData.hashCode());
    }
 
    public String toString() {
        return "CheckParamDTO(customTemplate=" + getCustomTemplate() + ", relationMap=" + getRelationMap() + ", specialData=" + getSpecialData() + ")";
    }
 
    public CustomTemplate getCustomTemplate() {
        return this.customTemplate;
    }
 
    public Map<String, CustomTemplateFieldRelationDTO> getRelationMap() {
        return this.relationMap;
    }
 
    public Map<String, String> getSpecialData() {
        return this.specialData;
    }
}