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
package com.qianwen.smartman.modules.visual.dto;
 
import java.io.Serializable;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/visual/dto/WcsDurationDTO.class */
public class WcsDurationDTO implements Serializable {
    private static final long serialVersionUID = -7945668671373475007L;
    private Integer wcs;
    private Long duration;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/visual/dto/WcsDurationDTO$WcsDurationDTOBuilder.class */
    public static class WcsDurationDTOBuilder {
        private Integer wcs;
        private Long duration;
 
        WcsDurationDTOBuilder() {
        }
 
        public WcsDurationDTOBuilder wcs(final Integer wcs) {
            this.wcs = wcs;
            return this;
        }
 
        public WcsDurationDTOBuilder duration(final Long duration) {
            this.duration = duration;
            return this;
        }
 
        public WcsDurationDTO build() {
            return new WcsDurationDTO(this.wcs, this.duration);
        }
 
        public String toString() {
            return "WcsDurationDTO.WcsDurationDTOBuilder(wcs=" + this.wcs + ", duration=" + this.duration + ")";
        }
    }
 
    public void setWcs(final Integer wcs) {
        this.wcs = wcs;
    }
 
    public void setDuration(final Long duration) {
        this.duration = duration;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof WcsDurationDTO) {
            WcsDurationDTO other = (WcsDurationDTO) o;
            if (other.canEqual(this)) {
                Object this$wcs = getWcs();
                Object other$wcs = other.getWcs();
                if (this$wcs == null) {
                    if (other$wcs != null) {
                        return false;
                    }
                } else if (!this$wcs.equals(other$wcs)) {
                    return false;
                }
                Object this$duration = getDuration();
                Object other$duration = other.getDuration();
                return this$duration == null ? other$duration == null : this$duration.equals(other$duration);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof WcsDurationDTO;
    }
 
    public int hashCode() {
        Object $wcs = getWcs();
        int result = (1 * 59) + ($wcs == null ? 43 : $wcs.hashCode());
        Object $duration = getDuration();
        return (result * 59) + ($duration == null ? 43 : $duration.hashCode());
    }
 
    public String toString() {
        return "WcsDurationDTO(wcs=" + getWcs() + ", duration=" + getDuration() + ")";
    }
 
    public static WcsDurationDTOBuilder builder() {
        return new WcsDurationDTOBuilder();
    }
 
    public WcsDurationDTO() {
    }
 
    public WcsDurationDTO(final Integer wcs, final Long duration) {
        this.wcs = wcs;
        this.duration = duration;
    }
 
    public Integer getWcs() {
        return this.wcs;
    }
 
    public Long getDuration() {
        return this.duration;
    }
}