yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
package com.qianwen.smartman.modules.coproduction.dto;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.List;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/dto/ReportWorkDetailDTO.class */
public class ReportWorkDetailDTO implements Serializable {
    @ApiModelProperty("报工详情头信息")
    private OrderReportDTO reportDTO;
    @ApiModelProperty("报工工位,可能是多个")
    private String workstationNames;
    @ApiModelProperty("报工工位详情")
    private List<JuxtapositionReportDTO> juxtapositionReports;
 
    public void setReportDTO(final OrderReportDTO reportDTO) {
        this.reportDTO = reportDTO;
    }
 
    public void setWorkstationNames(final String workstationNames) {
        this.workstationNames = workstationNames;
    }
 
    public void setJuxtapositionReports(final List<JuxtapositionReportDTO> juxtapositionReports) {
        this.juxtapositionReports = juxtapositionReports;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof ReportWorkDetailDTO) {
            ReportWorkDetailDTO other = (ReportWorkDetailDTO) o;
            if (other.canEqual(this)) {
                Object this$reportDTO = getReportDTO();
                Object other$reportDTO = other.getReportDTO();
                if (this$reportDTO == null) {
                    if (other$reportDTO != null) {
                        return false;
                    }
                } else if (!this$reportDTO.equals(other$reportDTO)) {
                    return false;
                }
                Object this$workstationNames = getWorkstationNames();
                Object other$workstationNames = other.getWorkstationNames();
                if (this$workstationNames == null) {
                    if (other$workstationNames != null) {
                        return false;
                    }
                } else if (!this$workstationNames.equals(other$workstationNames)) {
                    return false;
                }
                Object this$juxtapositionReports = getJuxtapositionReports();
                Object other$juxtapositionReports = other.getJuxtapositionReports();
                return this$juxtapositionReports == null ? other$juxtapositionReports == null : this$juxtapositionReports.equals(other$juxtapositionReports);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof ReportWorkDetailDTO;
    }
 
    public int hashCode() {
        Object $reportDTO = getReportDTO();
        int result = (1 * 59) + ($reportDTO == null ? 43 : $reportDTO.hashCode());
        Object $workstationNames = getWorkstationNames();
        int result2 = (result * 59) + ($workstationNames == null ? 43 : $workstationNames.hashCode());
        Object $juxtapositionReports = getJuxtapositionReports();
        return (result2 * 59) + ($juxtapositionReports == null ? 43 : $juxtapositionReports.hashCode());
    }
 
    public String toString() {
        return "ReportWorkDetailDTO(reportDTO=" + getReportDTO() + ", workstationNames=" + getWorkstationNames() + ", juxtapositionReports=" + getJuxtapositionReports() + ")";
    }
 
    public OrderReportDTO getReportDTO() {
        return this.reportDTO;
    }
 
    public String getWorkstationNames() {
        return this.workstationNames;
    }
 
    public List<JuxtapositionReportDTO> getJuxtapositionReports() {
        return this.juxtapositionReports;
    }
}