yangys
2024-03-28 23a939ed820ee32f9a4309f9c81b7bab5a566f30
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package com.qianwen.smartman.modules.cps.dto;
 
import java.util.List;
import java.util.Map;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/dto/CodeMapDTO.class */
public class CodeMapDTO {
    private Map<String, String> shortCodeMap;
    private Map<String, String> pinCodeMap;
    private List<String> workstationCodeList;
    private List<String> machineCodeList;
    private Map<String, String> importShortCodeMap;
    private Map<String, String> importPinCodeMap;
 
    public void setShortCodeMap(final Map<String, String> shortCodeMap) {
        this.shortCodeMap = shortCodeMap;
    }
 
    public void setPinCodeMap(final Map<String, String> pinCodeMap) {
        this.pinCodeMap = pinCodeMap;
    }
 
    public void setWorkstationCodeList(final List<String> workstationCodeList) {
        this.workstationCodeList = workstationCodeList;
    }
 
    public void setMachineCodeList(final List<String> machineCodeList) {
        this.machineCodeList = machineCodeList;
    }
 
    public void setImportShortCodeMap(final Map<String, String> importShortCodeMap) {
        this.importShortCodeMap = importShortCodeMap;
    }
 
    public void setImportPinCodeMap(final Map<String, String> importPinCodeMap) {
        this.importPinCodeMap = importPinCodeMap;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CodeMapDTO) {
            CodeMapDTO other = (CodeMapDTO) o;
            if (other.canEqual(this)) {
                Object this$shortCodeMap = getShortCodeMap();
                Object other$shortCodeMap = other.getShortCodeMap();
                if (this$shortCodeMap == null) {
                    if (other$shortCodeMap != null) {
                        return false;
                    }
                } else if (!this$shortCodeMap.equals(other$shortCodeMap)) {
                    return false;
                }
                Object this$pinCodeMap = getPinCodeMap();
                Object other$pinCodeMap = other.getPinCodeMap();
                if (this$pinCodeMap == null) {
                    if (other$pinCodeMap != null) {
                        return false;
                    }
                } else if (!this$pinCodeMap.equals(other$pinCodeMap)) {
                    return false;
                }
                Object this$workstationCodeList = getWorkstationCodeList();
                Object other$workstationCodeList = other.getWorkstationCodeList();
                if (this$workstationCodeList == null) {
                    if (other$workstationCodeList != null) {
                        return false;
                    }
                } else if (!this$workstationCodeList.equals(other$workstationCodeList)) {
                    return false;
                }
                Object this$machineCodeList = getMachineCodeList();
                Object other$machineCodeList = other.getMachineCodeList();
                if (this$machineCodeList == null) {
                    if (other$machineCodeList != null) {
                        return false;
                    }
                } else if (!this$machineCodeList.equals(other$machineCodeList)) {
                    return false;
                }
                Object this$importShortCodeMap = getImportShortCodeMap();
                Object other$importShortCodeMap = other.getImportShortCodeMap();
                if (this$importShortCodeMap == null) {
                    if (other$importShortCodeMap != null) {
                        return false;
                    }
                } else if (!this$importShortCodeMap.equals(other$importShortCodeMap)) {
                    return false;
                }
                Object this$importPinCodeMap = getImportPinCodeMap();
                Object other$importPinCodeMap = other.getImportPinCodeMap();
                return this$importPinCodeMap == null ? other$importPinCodeMap == null : this$importPinCodeMap.equals(other$importPinCodeMap);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CodeMapDTO;
    }
 
    public int hashCode() {
        Object $shortCodeMap = getShortCodeMap();
        int result = (1 * 59) + ($shortCodeMap == null ? 43 : $shortCodeMap.hashCode());
        Object $pinCodeMap = getPinCodeMap();
        int result2 = (result * 59) + ($pinCodeMap == null ? 43 : $pinCodeMap.hashCode());
        Object $workstationCodeList = getWorkstationCodeList();
        int result3 = (result2 * 59) + ($workstationCodeList == null ? 43 : $workstationCodeList.hashCode());
        Object $machineCodeList = getMachineCodeList();
        int result4 = (result3 * 59) + ($machineCodeList == null ? 43 : $machineCodeList.hashCode());
        Object $importShortCodeMap = getImportShortCodeMap();
        int result5 = (result4 * 59) + ($importShortCodeMap == null ? 43 : $importShortCodeMap.hashCode());
        Object $importPinCodeMap = getImportPinCodeMap();
        return (result5 * 59) + ($importPinCodeMap == null ? 43 : $importPinCodeMap.hashCode());
    }
 
    public String toString() {
        return "CodeMapDTO(shortCodeMap=" + getShortCodeMap() + ", pinCodeMap=" + getPinCodeMap() + ", workstationCodeList=" + getWorkstationCodeList() + ", machineCodeList=" + getMachineCodeList() + ", importShortCodeMap=" + getImportShortCodeMap() + ", importPinCodeMap=" + getImportPinCodeMap() + ")";
    }
 
    public CodeMapDTO(final Map<String, String> shortCodeMap, final Map<String, String> pinCodeMap, final List<String> workstationCodeList, final List<String> machineCodeList, final Map<String, String> importShortCodeMap, final Map<String, String> importPinCodeMap) {
        this.shortCodeMap = shortCodeMap;
        this.pinCodeMap = pinCodeMap;
        this.workstationCodeList = workstationCodeList;
        this.machineCodeList = machineCodeList;
        this.importShortCodeMap = importShortCodeMap;
        this.importPinCodeMap = importPinCodeMap;
    }
 
    public CodeMapDTO() {
    }
 
    public Map<String, String> getShortCodeMap() {
        return this.shortCodeMap;
    }
 
    public Map<String, String> getPinCodeMap() {
        return this.pinCodeMap;
    }
 
    public List<String> getWorkstationCodeList() {
        return this.workstationCodeList;
    }
 
    public List<String> getMachineCodeList() {
        return this.machineCodeList;
    }
 
    public Map<String, String> getImportShortCodeMap() {
        return this.importShortCodeMap;
    }
 
    public Map<String, String> getImportPinCodeMap() {
        return this.importPinCodeMap;
    }
}