PC
2024-03-31 8c9ba6667b89cc0494d05b5da4355dde205b8d4a
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
166
167
168
169
170
171
172
173
package com.qianwen.smartman.modules.coproduction.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/PlanModifyVO.class */
public class PlanModifyVO {
    @ApiModelProperty("id")
    private Long id;
    @ApiModelProperty("订单编号")
    private String indentCode;
    @ApiModelProperty("计划数量")
    private Integer planNum;
    @ApiModelProperty("计划开始时间")
    private Date planStartTime;
    @ApiModelProperty("计划结束时间")
    private Date planEndTime;
    @ApiModelProperty("扩展字段")
    private String extendField;
    @ApiModelProperty("规格型号")
    private String standardModel;
 
    public void setId(final Long id) {
        this.id = id;
    }
 
    public void setIndentCode(final String indentCode) {
        this.indentCode = indentCode;
    }
 
    public void setPlanNum(final Integer planNum) {
        this.planNum = planNum;
    }
 
    public void setPlanStartTime(final Date planStartTime) {
        this.planStartTime = planStartTime;
    }
 
    public void setPlanEndTime(final Date planEndTime) {
        this.planEndTime = planEndTime;
    }
 
    public void setExtendField(final String extendField) {
        this.extendField = extendField;
    }
 
    public void setStandardModel(final String standardModel) {
        this.standardModel = standardModel;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof PlanModifyVO) {
            PlanModifyVO other = (PlanModifyVO) o;
            if (other.canEqual(this)) {
                Object this$id = getId();
                Object other$id = other.getId();
                if (this$id == null) {
                    if (other$id != null) {
                        return false;
                    }
                } else if (!this$id.equals(other$id)) {
                    return false;
                }
                Object this$planNum = getPlanNum();
                Object other$planNum = other.getPlanNum();
                if (this$planNum == null) {
                    if (other$planNum != null) {
                        return false;
                    }
                } else if (!this$planNum.equals(other$planNum)) {
                    return false;
                }
                Object this$indentCode = getIndentCode();
                Object other$indentCode = other.getIndentCode();
                if (this$indentCode == null) {
                    if (other$indentCode != null) {
                        return false;
                    }
                } else if (!this$indentCode.equals(other$indentCode)) {
                    return false;
                }
                Object this$planStartTime = getPlanStartTime();
                Object other$planStartTime = other.getPlanStartTime();
                if (this$planStartTime == null) {
                    if (other$planStartTime != null) {
                        return false;
                    }
                } else if (!this$planStartTime.equals(other$planStartTime)) {
                    return false;
                }
                Object this$planEndTime = getPlanEndTime();
                Object other$planEndTime = other.getPlanEndTime();
                if (this$planEndTime == null) {
                    if (other$planEndTime != null) {
                        return false;
                    }
                } else if (!this$planEndTime.equals(other$planEndTime)) {
                    return false;
                }
                Object this$extendField = getExtendField();
                Object other$extendField = other.getExtendField();
                if (this$extendField == null) {
                    if (other$extendField != null) {
                        return false;
                    }
                } else if (!this$extendField.equals(other$extendField)) {
                    return false;
                }
                Object this$standardModel = getStandardModel();
                Object other$standardModel = other.getStandardModel();
                return this$standardModel == null ? other$standardModel == null : this$standardModel.equals(other$standardModel);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof PlanModifyVO;
    }
 
    public int hashCode() {
        Object $id = getId();
        int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
        Object $planNum = getPlanNum();
        int result2 = (result * 59) + ($planNum == null ? 43 : $planNum.hashCode());
        Object $indentCode = getIndentCode();
        int result3 = (result2 * 59) + ($indentCode == null ? 43 : $indentCode.hashCode());
        Object $planStartTime = getPlanStartTime();
        int result4 = (result3 * 59) + ($planStartTime == null ? 43 : $planStartTime.hashCode());
        Object $planEndTime = getPlanEndTime();
        int result5 = (result4 * 59) + ($planEndTime == null ? 43 : $planEndTime.hashCode());
        Object $extendField = getExtendField();
        int result6 = (result5 * 59) + ($extendField == null ? 43 : $extendField.hashCode());
        Object $standardModel = getStandardModel();
        return (result6 * 59) + ($standardModel == null ? 43 : $standardModel.hashCode());
    }
 
    public String toString() {
        return "PlanModifyVO(id=" + getId() + ", indentCode=" + getIndentCode() + ", planNum=" + getPlanNum() + ", planStartTime=" + getPlanStartTime() + ", planEndTime=" + getPlanEndTime() + ", extendField=" + getExtendField() + ", standardModel=" + getStandardModel() + ")";
    }
 
    public Long getId() {
        return this.id;
    }
 
    public String getIndentCode() {
        return this.indentCode;
    }
 
    public Integer getPlanNum() {
        return this.planNum;
    }
 
    public Date getPlanStartTime() {
        return this.planStartTime;
    }
 
    public Date getPlanEndTime() {
        return this.planEndTime;
    }
 
    public String getExtendField() {
        return this.extendField;
    }
 
    public String getStandardModel() {
        return this.standardModel;
    }
}