yangys
2024-05-07 9b677ea5c6978788d135fc15da3d78c5a93789c2
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
package com.qianwen.smartman.modules.dnc.dto;
 
import io.swagger.annotations.ApiModelProperty;
 
public class FileOnlineWriteVo {
    @ApiModelProperty("guid")
    private String ID;
    @ApiModelProperty("文件名称")
    private String Name;
    @ApiModelProperty("文件流")
    private String Content;
 
    public void setID(final String ID) {
        this.ID = ID;
    }
 
    public void setName(final String Name) {
        this.Name = Name;
    }
 
    public void setContent(final String Content) {
        this.Content = Content;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof FileOnlineWriteVo) {
            FileOnlineWriteVo other = (FileOnlineWriteVo) 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$Name = getName();
                Object other$Name = other.getName();
                if (this$Name == null) {
                    if (other$Name != null) {
                        return false;
                    }
                } else if (!this$Name.equals(other$Name)) {
                    return false;
                }
                Object this$Content = getContent();
                Object other$Content = other.getContent();
                return this$Content == null ? other$Content == null : this$Content.equals(other$Content);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof FileOnlineWriteVo;
    }
 
    public int hashCode() {
        Object $ID = getID();
        int result = (1 * 59) + ($ID == null ? 43 : $ID.hashCode());
        Object $Name = getName();
        int result2 = (result * 59) + ($Name == null ? 43 : $Name.hashCode());
        Object $Content = getContent();
        return (result2 * 59) + ($Content == null ? 43 : $Content.hashCode());
    }
 
    public String toString() {
        return "FileOnlineWriteVo(ID=" + getID() + ", Name=" + getName() + ", Content=" + getContent() + ")";
    }
 
    public String getID() {
        return this.ID;
    }
 
    public String getName() {
        return this.Name;
    }
 
    public String getContent() {
        return this.Content;
    }
}