yangys
2025-11-21 e8ed1a91c77ab62a924f12acd55777f227bacd7e
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
package com.qianwen.smartman.modules.report.vo;
 
 
public class WorkstationEfficiencyByShiftVO {
    private String workstationCode;
    private String workstationName;
    private String shiftIndex;
    private String time;
    private String Item;
    private String value;
 
    public void setWorkstationCode(final String workstationCode) {
        this.workstationCode = workstationCode;
    }
 
    public void setWorkstationName(final String workstationName) {
        this.workstationName = workstationName;
    }
 
    public void setShiftIndex(final String shiftIndex) {
        this.shiftIndex = shiftIndex;
    }
 
    public void setTime(final String time) {
        this.time = time;
    }
 
    public void setItem(final String Item) {
        this.Item = Item;
    }
 
    public void setValue(final String value) {
        this.value = value;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof WorkstationEfficiencyByShiftVO) {
            WorkstationEfficiencyByShiftVO other = (WorkstationEfficiencyByShiftVO) o;
            if (other.canEqual(this)) {
                Object this$workstationCode = getWorkstationCode();
                Object other$workstationCode = other.getWorkstationCode();
                if (this$workstationCode == null) {
                    if (other$workstationCode != null) {
                        return false;
                    }
                } else if (!this$workstationCode.equals(other$workstationCode)) {
                    return false;
                }
                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$shiftIndex = getShiftIndex();
                Object other$shiftIndex = other.getShiftIndex();
                if (this$shiftIndex == null) {
                    if (other$shiftIndex != null) {
                        return false;
                    }
                } else if (!this$shiftIndex.equals(other$shiftIndex)) {
                    return false;
                }
                Object this$time = getTime();
                Object other$time = other.getTime();
                if (this$time == null) {
                    if (other$time != null) {
                        return false;
                    }
                } else if (!this$time.equals(other$time)) {
                    return false;
                }
                Object this$Item = getItem();
                Object other$Item = other.getItem();
                if (this$Item == null) {
                    if (other$Item != null) {
                        return false;
                    }
                } else if (!this$Item.equals(other$Item)) {
                    return false;
                }
                Object this$value = getValue();
                Object other$value = other.getValue();
                return this$value == null ? other$value == null : this$value.equals(other$value);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof WorkstationEfficiencyByShiftVO;
    }
 
    public int hashCode() {
        Object $workstationCode = getWorkstationCode();
        int result = (1 * 59) + ($workstationCode == null ? 43 : $workstationCode.hashCode());
        Object $workstationName = getWorkstationName();
        int result2 = (result * 59) + ($workstationName == null ? 43 : $workstationName.hashCode());
        Object $shiftIndex = getShiftIndex();
        int result3 = (result2 * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode());
        Object $time = getTime();
        int result4 = (result3 * 59) + ($time == null ? 43 : $time.hashCode());
        Object $Item = getItem();
        int result5 = (result4 * 59) + ($Item == null ? 43 : $Item.hashCode());
        Object $value = getValue();
        return (result5 * 59) + ($value == null ? 43 : $value.hashCode());
    }
 
    public String toString() {
        return "WorkstationEfficiencyByShiftVO(workstationCode=" + getWorkstationCode() + ", workstationName=" + getWorkstationName() + ", shiftIndex=" + getShiftIndex() + ", time=" + getTime() + ", Item=" + getItem() + ", value=" + getValue() + ")";
    }
 
    public String getWorkstationCode() {
        return this.workstationCode;
    }
 
    public String getWorkstationName() {
        return this.workstationName;
    }
 
    public String getShiftIndex() {
        return this.shiftIndex;
    }
 
    public String getTime() {
        return this.time;
    }
 
    public String getItem() {
        return this.Item;
    }
 
    public String getValue() {
        return this.value;
    }
}