yangys
2024-03-29 410eed616ce86a76ecfbd272be0a4463ac54a517
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
package com.qianwen.smartman.modules.dnc.vo;
 
import javax.validation.constraints.NotBlank;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/FactoryFileVO.class */
public class FactoryFileVO {
    @NotBlank(message = "文件名称不能为空")
    private String fileName;
    @NotBlank(message = "objectKey不能为空")
    private String objectKey;
 
    public void setFileName(final String fileName) {
        this.fileName = fileName;
    }
 
    public void setObjectKey(final String objectKey) {
        this.objectKey = objectKey;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof FactoryFileVO) {
            FactoryFileVO other = (FactoryFileVO) o;
            if (other.canEqual(this)) {
                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$objectKey = getObjectKey();
                Object other$objectKey = other.getObjectKey();
                return this$objectKey == null ? other$objectKey == null : this$objectKey.equals(other$objectKey);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof FactoryFileVO;
    }
 
    public int hashCode() {
        Object $fileName = getFileName();
        int result = (1 * 59) + ($fileName == null ? 43 : $fileName.hashCode());
        Object $objectKey = getObjectKey();
        return (result * 59) + ($objectKey == null ? 43 : $objectKey.hashCode());
    }
 
    public String toString() {
        return "FactoryFileVO(fileName=" + getFileName() + ", objectKey=" + getObjectKey() + ")";
    }
 
    public String getFileName() {
        return this.fileName;
    }
 
    public String getObjectKey() {
        return this.objectKey;
    }
}