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
package com.qianwen.smartman.modules.dnc.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
 
@ApiModel("DncArtBagLogPageVO对象")
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/DncArtBagLogPageVO.class */
public class DncArtBagLogPageVO implements Serializable {
    @ApiModelProperty("文件名称")
    private String fileName;
    @ApiModelProperty("文件类型")
    private String fileClass;
    @ApiModelProperty("文件属性")
    private Integer fileType;
    @ApiModelProperty("文件归属")
    private Integer fileBelong;
    @ApiModelProperty("存储空间")
    private Integer storage;
    @ApiModelProperty(value = "工艺包id", dataType = "java.lang.String")
    private Long bagId;
 
    public void setFileName(final String fileName) {
        this.fileName = fileName;
    }
 
    public void setFileClass(final String fileClass) {
        this.fileClass = fileClass;
    }
 
    public void setFileType(final Integer fileType) {
        this.fileType = fileType;
    }
 
    public void setFileBelong(final Integer fileBelong) {
        this.fileBelong = fileBelong;
    }
 
    public void setStorage(final Integer storage) {
        this.storage = storage;
    }
 
    public void setBagId(final Long bagId) {
        this.bagId = bagId;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DncArtBagLogPageVO) {
            DncArtBagLogPageVO other = (DncArtBagLogPageVO) o;
            if (other.canEqual(this)) {
                Object this$fileType = getFileType();
                Object other$fileType = other.getFileType();
                if (this$fileType == null) {
                    if (other$fileType != null) {
                        return false;
                    }
                } else if (!this$fileType.equals(other$fileType)) {
                    return false;
                }
                Object this$fileBelong = getFileBelong();
                Object other$fileBelong = other.getFileBelong();
                if (this$fileBelong == null) {
                    if (other$fileBelong != null) {
                        return false;
                    }
                } else if (!this$fileBelong.equals(other$fileBelong)) {
                    return false;
                }
                Object this$storage = getStorage();
                Object other$storage = other.getStorage();
                if (this$storage == null) {
                    if (other$storage != null) {
                        return false;
                    }
                } else if (!this$storage.equals(other$storage)) {
                    return false;
                }
                Object this$bagId = getBagId();
                Object other$bagId = other.getBagId();
                if (this$bagId == null) {
                    if (other$bagId != null) {
                        return false;
                    }
                } else if (!this$bagId.equals(other$bagId)) {
                    return false;
                }
                Object this$fileName = getFileName();
                Object other$fileName = other.getFileName();
                if (this$fileName == null) {
                    if (other$fileName != null) {
                        return false;
                    }
                } else if (!this$fileName.equals(other$fileName)) {
                    return false;
                }
                Object this$fileClass = getFileClass();
                Object other$fileClass = other.getFileClass();
                return this$fileClass == null ? other$fileClass == null : this$fileClass.equals(other$fileClass);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DncArtBagLogPageVO;
    }
 
    public int hashCode() {
        Object $fileType = getFileType();
        int result = (1 * 59) + ($fileType == null ? 43 : $fileType.hashCode());
        Object $fileBelong = getFileBelong();
        int result2 = (result * 59) + ($fileBelong == null ? 43 : $fileBelong.hashCode());
        Object $storage = getStorage();
        int result3 = (result2 * 59) + ($storage == null ? 43 : $storage.hashCode());
        Object $bagId = getBagId();
        int result4 = (result3 * 59) + ($bagId == null ? 43 : $bagId.hashCode());
        Object $fileName = getFileName();
        int result5 = (result4 * 59) + ($fileName == null ? 43 : $fileName.hashCode());
        Object $fileClass = getFileClass();
        return (result5 * 59) + ($fileClass == null ? 43 : $fileClass.hashCode());
    }
 
    public String toString() {
        return "DncArtBagLogPageVO(fileName=" + getFileName() + ", fileClass=" + getFileClass() + ", fileType=" + getFileType() + ", fileBelong=" + getFileBelong() + ", storage=" + getStorage() + ", bagId=" + getBagId() + ")";
    }
 
    public String getFileName() {
        return this.fileName;
    }
 
    public String getFileClass() {
        return this.fileClass;
    }
 
    public Integer getFileType() {
        return this.fileType;
    }
 
    public Integer getFileBelong() {
        return this.fileBelong;
    }
 
    public Integer getStorage() {
        return this.storage;
    }
 
    public Long getBagId() {
        return this.bagId;
    }
}