yangys
2024-03-30 4684d271ea0107097209f7de0951bf451e48df21
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
package com.qianwen.smartman.modules.mdc.dto;
 
import java.io.Serializable;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/dto/NewParamSaveDTO.class */
public class NewParamSaveDTO implements Serializable {
    private static final long serialVersionUID = 8381159539502968120L;
    private Long ts;
    private String value;
    private String workstationId;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/dto/NewParamSaveDTO$NewParamSaveDTOBuilder.class */
    public static class NewParamSaveDTOBuilder {
        private Long ts;
        private String value;
        private String workstationId;
 
        NewParamSaveDTOBuilder() {
        }
 
        public NewParamSaveDTOBuilder ts(final Long ts) {
            this.ts = ts;
            return this;
        }
 
        public NewParamSaveDTOBuilder value(final String value) {
            this.value = value;
            return this;
        }
 
        public NewParamSaveDTOBuilder workstationId(final String workstationId) {
            this.workstationId = workstationId;
            return this;
        }
 
        public NewParamSaveDTO build() {
            return new NewParamSaveDTO(this.ts, this.value, this.workstationId);
        }
 
        public String toString() {
            return "NewParamSaveDTO.NewParamSaveDTOBuilder(ts=" + this.ts + ", value=" + this.value + ", workstationId=" + this.workstationId + ")";
        }
    }
 
    public void setTs(final Long ts) {
        this.ts = ts;
    }
 
    public void setValue(final String value) {
        this.value = value;
    }
 
    public void setWorkstationId(final String workstationId) {
        this.workstationId = workstationId;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof NewParamSaveDTO) {
            NewParamSaveDTO other = (NewParamSaveDTO) o;
            if (other.canEqual(this)) {
                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$value = getValue();
                Object other$value = other.getValue();
                if (this$value == null) {
                    if (other$value != null) {
                        return false;
                    }
                } else if (!this$value.equals(other$value)) {
                    return false;
                }
                Object this$workstationId = getWorkstationId();
                Object other$workstationId = other.getWorkstationId();
                return this$workstationId == null ? other$workstationId == null : this$workstationId.equals(other$workstationId);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof NewParamSaveDTO;
    }
 
    public int hashCode() {
        Object $ts = getTs();
        int result = (1 * 59) + ($ts == null ? 43 : $ts.hashCode());
        Object $value = getValue();
        int result2 = (result * 59) + ($value == null ? 43 : $value.hashCode());
        Object $workstationId = getWorkstationId();
        return (result2 * 59) + ($workstationId == null ? 43 : $workstationId.hashCode());
    }
 
    public String toString() {
        return "NewParamSaveDTO(ts=" + getTs() + ", value=" + getValue() + ", workstationId=" + getWorkstationId() + ")";
    }
 
    public static NewParamSaveDTOBuilder builder() {
        return new NewParamSaveDTOBuilder();
    }
 
    public NewParamSaveDTO() {
    }
 
    public NewParamSaveDTO(final Long ts, final String value, final String workstationId) {
        this.ts = ts;
        this.value = value;
        this.workstationId = workstationId;
    }
 
    public Long getTs() {
        return this.ts;
    }
 
    public String getValue() {
        return this.value;
    }
 
    public String getWorkstationId() {
        return this.workstationId;
    }
}