yangys
2024-03-29 7d18c733d4c4109f2bc8e5b176cfde74c490a207
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
package com.qianwen.smartman.modules.report.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.sql.Timestamp;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/report/vo/DrillWorkstationAlarmByTimeVO.class */
public class DrillWorkstationAlarmByTimeVO implements Serializable {
    private static final long serialVersionUID = -530938150418043787L;
    @ApiModelProperty("时间")
    private Timestamp ts;
    @ApiModelProperty("日")
    private Integer factoryDate;
    @ApiModelProperty("展示时间")
    private String showDate;
    @ApiModelProperty("报警代码")
    private String alarmCode;
    @ApiModelProperty("报警信息")
    private String alarmMsg;
    @ApiModelProperty("工位ID")
    private Long workstationId;
 
    public void setTs(final Timestamp ts) {
        this.ts = ts;
    }
 
    public void setFactoryDate(final Integer factoryDate) {
        this.factoryDate = factoryDate;
    }
 
    public void setShowDate(final String showDate) {
        this.showDate = showDate;
    }
 
    public void setAlarmCode(final String alarmCode) {
        this.alarmCode = alarmCode;
    }
 
    public void setAlarmMsg(final String alarmMsg) {
        this.alarmMsg = alarmMsg;
    }
 
    public void setWorkstationId(final Long workstationId) {
        this.workstationId = workstationId;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DrillWorkstationAlarmByTimeVO) {
            DrillWorkstationAlarmByTimeVO other = (DrillWorkstationAlarmByTimeVO) o;
            if (other.canEqual(this)) {
                Object this$factoryDate = getFactoryDate();
                Object other$factoryDate = other.getFactoryDate();
                if (this$factoryDate == null) {
                    if (other$factoryDate != null) {
                        return false;
                    }
                } else if (!this$factoryDate.equals(other$factoryDate)) {
                    return false;
                }
                Object this$workstationId = getWorkstationId();
                Object other$workstationId = other.getWorkstationId();
                if (this$workstationId == null) {
                    if (other$workstationId != null) {
                        return false;
                    }
                } else if (!this$workstationId.equals(other$workstationId)) {
                    return false;
                }
                Object this$ts = getTs();
                Object other$ts = other.getTs();
                if (this$ts == null) {
                    if (other$ts != null) {
                        return false;
                    }
                } else if (!this$ts.equals(other$ts)) {
                    return false;
                }
                Object this$showDate = getShowDate();
                Object other$showDate = other.getShowDate();
                if (this$showDate == null) {
                    if (other$showDate != null) {
                        return false;
                    }
                } else if (!this$showDate.equals(other$showDate)) {
                    return false;
                }
                Object this$alarmCode = getAlarmCode();
                Object other$alarmCode = other.getAlarmCode();
                if (this$alarmCode == null) {
                    if (other$alarmCode != null) {
                        return false;
                    }
                } else if (!this$alarmCode.equals(other$alarmCode)) {
                    return false;
                }
                Object this$alarmMsg = getAlarmMsg();
                Object other$alarmMsg = other.getAlarmMsg();
                return this$alarmMsg == null ? other$alarmMsg == null : this$alarmMsg.equals(other$alarmMsg);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DrillWorkstationAlarmByTimeVO;
    }
 
    public int hashCode() {
        Object $factoryDate = getFactoryDate();
        int result = (1 * 59) + ($factoryDate == null ? 43 : $factoryDate.hashCode());
        Object $workstationId = getWorkstationId();
        int result2 = (result * 59) + ($workstationId == null ? 43 : $workstationId.hashCode());
        Object $ts = getTs();
        int result3 = (result2 * 59) + ($ts == null ? 43 : $ts.hashCode());
        Object $showDate = getShowDate();
        int result4 = (result3 * 59) + ($showDate == null ? 43 : $showDate.hashCode());
        Object $alarmCode = getAlarmCode();
        int result5 = (result4 * 59) + ($alarmCode == null ? 43 : $alarmCode.hashCode());
        Object $alarmMsg = getAlarmMsg();
        return (result5 * 59) + ($alarmMsg == null ? 43 : $alarmMsg.hashCode());
    }
 
    public String toString() {
        return "DrillWorkstationAlarmByTimeVO(ts=" + getTs() + ", factoryDate=" + getFactoryDate() + ", showDate=" + getShowDate() + ", alarmCode=" + getAlarmCode() + ", alarmMsg=" + getAlarmMsg() + ", workstationId=" + getWorkstationId() + ")";
    }
 
    public Timestamp getTs() {
        return this.ts;
    }
 
    public Integer getFactoryDate() {
        return this.factoryDate;
    }
 
    public String getShowDate() {
        return this.showDate;
    }
 
    public String getAlarmCode() {
        return this.alarmCode;
    }
 
    public String getAlarmMsg() {
        return this.alarmMsg;
    }
 
    public Long getWorkstationId() {
        return this.workstationId;
    }
}