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
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
package com.qianwen.smartman.modules.andon.dto;
 
import io.swagger.annotations.ApiModelProperty;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/andon/dto/AndonMessageSendDTO.class */
public class AndonMessageSendDTO {
    @ApiModelProperty("工位名称")
    private String workstationName;
    @ApiModelProperty("呼叫类型")
    private String typeName;
    @ApiModelProperty("呼叫原因")
    private String reasons;
    @ApiModelProperty("呼叫人员")
    private String callEmpName;
    @ApiModelProperty("呼叫时间")
    private String callTime;
    @ApiModelProperty("呼叫信息表格")
    private String andonCallTable;
 
    public AndonMessageSendDTO setWorkstationName(final String workstationName) {
        this.workstationName = workstationName;
        return this;
    }
 
    public AndonMessageSendDTO setTypeName(final String typeName) {
        this.typeName = typeName;
        return this;
    }
 
    public AndonMessageSendDTO setReasons(final String reasons) {
        this.reasons = reasons;
        return this;
    }
 
    public AndonMessageSendDTO setCallEmpName(final String callEmpName) {
        this.callEmpName = callEmpName;
        return this;
    }
 
    public AndonMessageSendDTO setCallTime(final String callTime) {
        this.callTime = callTime;
        return this;
    }
 
    public AndonMessageSendDTO setAndonCallTable(final String andonCallTable) {
        this.andonCallTable = andonCallTable;
        return this;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof AndonMessageSendDTO) {
            AndonMessageSendDTO other = (AndonMessageSendDTO) o;
            if (other.canEqual(this)) {
                Object this$workstationName = getWorkstationName();
                Object other$workstationName = other.getWorkstationName();
                if (this$workstationName == null) {
                    if (other$workstationName != null) {
                        return false;
                    }
                } else if (!this$workstationName.equals(other$workstationName)) {
                    return false;
                }
                Object this$typeName = getTypeName();
                Object other$typeName = other.getTypeName();
                if (this$typeName == null) {
                    if (other$typeName != null) {
                        return false;
                    }
                } else if (!this$typeName.equals(other$typeName)) {
                    return false;
                }
                Object this$reasons = getReasons();
                Object other$reasons = other.getReasons();
                if (this$reasons == null) {
                    if (other$reasons != null) {
                        return false;
                    }
                } else if (!this$reasons.equals(other$reasons)) {
                    return false;
                }
                Object this$callEmpName = getCallEmpName();
                Object other$callEmpName = other.getCallEmpName();
                if (this$callEmpName == null) {
                    if (other$callEmpName != null) {
                        return false;
                    }
                } else if (!this$callEmpName.equals(other$callEmpName)) {
                    return false;
                }
                Object this$callTime = getCallTime();
                Object other$callTime = other.getCallTime();
                if (this$callTime == null) {
                    if (other$callTime != null) {
                        return false;
                    }
                } else if (!this$callTime.equals(other$callTime)) {
                    return false;
                }
                Object this$andonCallTable = getAndonCallTable();
                Object other$andonCallTable = other.getAndonCallTable();
                return this$andonCallTable == null ? other$andonCallTable == null : this$andonCallTable.equals(other$andonCallTable);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof AndonMessageSendDTO;
    }
 
    public int hashCode() {
        Object $workstationName = getWorkstationName();
        int result = (1 * 59) + ($workstationName == null ? 43 : $workstationName.hashCode());
        Object $typeName = getTypeName();
        int result2 = (result * 59) + ($typeName == null ? 43 : $typeName.hashCode());
        Object $reasons = getReasons();
        int result3 = (result2 * 59) + ($reasons == null ? 43 : $reasons.hashCode());
        Object $callEmpName = getCallEmpName();
        int result4 = (result3 * 59) + ($callEmpName == null ? 43 : $callEmpName.hashCode());
        Object $callTime = getCallTime();
        int result5 = (result4 * 59) + ($callTime == null ? 43 : $callTime.hashCode());
        Object $andonCallTable = getAndonCallTable();
        return (result5 * 59) + ($andonCallTable == null ? 43 : $andonCallTable.hashCode());
    }
 
    public String toString() {
        return "AndonMessageSendDTO(workstationName=" + getWorkstationName() + ", typeName=" + getTypeName() + ", reasons=" + getReasons() + ", callEmpName=" + getCallEmpName() + ", callTime=" + getCallTime() + ", andonCallTable=" + getAndonCallTable() + ")";
    }
 
    public String getWorkstationName() {
        return this.workstationName;
    }
 
    public String getTypeName() {
        return this.typeName;
    }
 
    public String getReasons() {
        return this.reasons;
    }
 
    public String getCallEmpName() {
        return this.callEmpName;
    }
 
    public String getCallTime() {
        return this.callTime;
    }
 
    public String getAndonCallTable() {
        return this.andonCallTable;
    }
}