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
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
159
160
161
162
163
164
165
package com.qianwen.smartman.modules.mdc.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/StatusTimeTotalVO.class */
public class StatusTimeTotalVO implements Serializable {
    private static final long serialVersionUID = -530938150418043787L;
    @ApiModelProperty("工位组ID")
    private String groupId;
    @ApiModelProperty("工位组名称")
    private String groupName;
    @ApiModelProperty("总时长")
    private Long totalTime;
    @ApiModelProperty("总时长")
    private List<StatusTimeTotalDetailVO> list;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/StatusTimeTotalVO$StatusTimeTotalVOBuilder.class */
    public static class StatusTimeTotalVOBuilder {
        private String groupId;
        private String groupName;
        private Long totalTime;
        private List<StatusTimeTotalDetailVO> list;
 
        StatusTimeTotalVOBuilder() {
        }
 
        public StatusTimeTotalVOBuilder groupId(final String groupId) {
            this.groupId = groupId;
            return this;
        }
 
        public StatusTimeTotalVOBuilder groupName(final String groupName) {
            this.groupName = groupName;
            return this;
        }
 
        public StatusTimeTotalVOBuilder totalTime(final Long totalTime) {
            this.totalTime = totalTime;
            return this;
        }
 
        public StatusTimeTotalVOBuilder list(final List<StatusTimeTotalDetailVO> list) {
            this.list = list;
            return this;
        }
 
        public StatusTimeTotalVO build() {
            return new StatusTimeTotalVO(this.groupId, this.groupName, this.totalTime, this.list);
        }
 
        public String toString() {
            return "StatusTimeTotalVO.StatusTimeTotalVOBuilder(groupId=" + this.groupId + ", groupName=" + this.groupName + ", totalTime=" + this.totalTime + ", list=" + this.list + ")";
        }
    }
 
    public void setGroupId(final String groupId) {
        this.groupId = groupId;
    }
 
    public void setGroupName(final String groupName) {
        this.groupName = groupName;
    }
 
    public void setTotalTime(final Long totalTime) {
        this.totalTime = totalTime;
    }
 
    public void setList(final List<StatusTimeTotalDetailVO> list) {
        this.list = list;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof StatusTimeTotalVO) {
            StatusTimeTotalVO other = (StatusTimeTotalVO) o;
            if (other.canEqual(this)) {
                Object this$totalTime = getTotalTime();
                Object other$totalTime = other.getTotalTime();
                if (this$totalTime == null) {
                    if (other$totalTime != null) {
                        return false;
                    }
                } else if (!this$totalTime.equals(other$totalTime)) {
                    return false;
                }
                Object this$groupId = getGroupId();
                Object other$groupId = other.getGroupId();
                if (this$groupId == null) {
                    if (other$groupId != null) {
                        return false;
                    }
                } else if (!this$groupId.equals(other$groupId)) {
                    return false;
                }
                Object this$groupName = getGroupName();
                Object other$groupName = other.getGroupName();
                if (this$groupName == null) {
                    if (other$groupName != null) {
                        return false;
                    }
                } else if (!this$groupName.equals(other$groupName)) {
                    return false;
                }
                Object this$list = getList();
                Object other$list = other.getList();
                return this$list == null ? other$list == null : this$list.equals(other$list);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof StatusTimeTotalVO;
    }
 
    public int hashCode() {
        Object $totalTime = getTotalTime();
        int result = (1 * 59) + ($totalTime == null ? 43 : $totalTime.hashCode());
        Object $groupId = getGroupId();
        int result2 = (result * 59) + ($groupId == null ? 43 : $groupId.hashCode());
        Object $groupName = getGroupName();
        int result3 = (result2 * 59) + ($groupName == null ? 43 : $groupName.hashCode());
        Object $list = getList();
        return (result3 * 59) + ($list == null ? 43 : $list.hashCode());
    }
 
    public String toString() {
        return "StatusTimeTotalVO(groupId=" + getGroupId() + ", groupName=" + getGroupName() + ", totalTime=" + getTotalTime() + ", list=" + getList() + ")";
    }
 
    public static StatusTimeTotalVOBuilder builder() {
        return new StatusTimeTotalVOBuilder();
    }
 
    public StatusTimeTotalVO() {
    }
 
    public StatusTimeTotalVO(final String groupId, final String groupName, final Long totalTime, final List<StatusTimeTotalDetailVO> list) {
        this.groupId = groupId;
        this.groupName = groupName;
        this.totalTime = totalTime;
        this.list = list;
    }
 
    public String getGroupId() {
        return this.groupId;
    }
 
    public String getGroupName() {
        return this.groupName;
    }
 
    public Long getTotalTime() {
        return this.totalTime;
    }
 
    public List<StatusTimeTotalDetailVO> getList() {
        return this.list;
    }
}