yangys
2024-05-07 1251cce20deab6e388b1e2ff8cdddd2896db162b
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package com.qianwen.smartman.modules.dnc.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.annotations.ApiModel;
import java.io.Serializable;
import java.util.Date;
 
@ApiModel("DncArtBagLogExcel对象")
public class DncArtBagLogExcel implements Serializable {
    @ExcelProperty({"文件名称"})
    private String fileName;
    @ExcelProperty({"版本号"})
    private String version;
    @ExcelProperty({"文件类型"})
    private String suffix;
    @ExcelProperty({"文件属性"})
    private String fileType;
    @ExcelProperty({"文件归属"})
    private String fileBelong;
    @ExcelProperty({"操作类型"})
    private String operationType;
    @ExcelProperty({"操作人员"})
    private String operatorName;
    @ExcelProperty({"操作时间"})
    private Date operationTime;
 
    public void setFileName(final String fileName) {
        this.fileName = fileName;
    }
 
    public void setVersion(final String version) {
        this.version = version;
    }
 
    public void setSuffix(final String suffix) {
        this.suffix = suffix;
    }
 
    public void setFileType(final String fileType) {
        this.fileType = fileType;
    }
 
    public void setFileBelong(final String fileBelong) {
        this.fileBelong = fileBelong;
    }
 
    public void setOperationType(final String operationType) {
        this.operationType = operationType;
    }
 
    public void setOperatorName(final String operatorName) {
        this.operatorName = operatorName;
    }
 
    public void setOperationTime(final Date operationTime) {
        this.operationTime = operationTime;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DncArtBagLogExcel) {
            DncArtBagLogExcel other = (DncArtBagLogExcel) 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$version = getVersion();
                Object other$version = other.getVersion();
                if (this$version == null) {
                    if (other$version != null) {
                        return false;
                    }
                } else if (!this$version.equals(other$version)) {
                    return false;
                }
                Object this$suffix = getSuffix();
                Object other$suffix = other.getSuffix();
                if (this$suffix == null) {
                    if (other$suffix != null) {
                        return false;
                    }
                } else if (!this$suffix.equals(other$suffix)) {
                    return false;
                }
                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$operationType = getOperationType();
                Object other$operationType = other.getOperationType();
                if (this$operationType == null) {
                    if (other$operationType != null) {
                        return false;
                    }
                } else if (!this$operationType.equals(other$operationType)) {
                    return false;
                }
                Object this$operatorName = getOperatorName();
                Object other$operatorName = other.getOperatorName();
                if (this$operatorName == null) {
                    if (other$operatorName != null) {
                        return false;
                    }
                } else if (!this$operatorName.equals(other$operatorName)) {
                    return false;
                }
                Object this$operationTime = getOperationTime();
                Object other$operationTime = other.getOperationTime();
                return this$operationTime == null ? other$operationTime == null : this$operationTime.equals(other$operationTime);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DncArtBagLogExcel;
    }
 
    public int hashCode() {
        Object $fileName = getFileName();
        int result = (1 * 59) + ($fileName == null ? 43 : $fileName.hashCode());
        Object $version = getVersion();
        int result2 = (result * 59) + ($version == null ? 43 : $version.hashCode());
        Object $suffix = getSuffix();
        int result3 = (result2 * 59) + ($suffix == null ? 43 : $suffix.hashCode());
        Object $fileType = getFileType();
        int result4 = (result3 * 59) + ($fileType == null ? 43 : $fileType.hashCode());
        Object $fileBelong = getFileBelong();
        int result5 = (result4 * 59) + ($fileBelong == null ? 43 : $fileBelong.hashCode());
        Object $operationType = getOperationType();
        int result6 = (result5 * 59) + ($operationType == null ? 43 : $operationType.hashCode());
        Object $operatorName = getOperatorName();
        int result7 = (result6 * 59) + ($operatorName == null ? 43 : $operatorName.hashCode());
        Object $operationTime = getOperationTime();
        return (result7 * 59) + ($operationTime == null ? 43 : $operationTime.hashCode());
    }
 
    public String toString() {
        return "DncArtBagLogExcel(fileName=" + getFileName() + ", version=" + getVersion() + ", suffix=" + getSuffix() + ", fileType=" + getFileType() + ", fileBelong=" + getFileBelong() + ", operationType=" + getOperationType() + ", operatorName=" + getOperatorName() + ", operationTime=" + getOperationTime() + ")";
    }
 
    public String getFileName() {
        return this.fileName;
    }
 
    public String getVersion() {
        return this.version;
    }
 
    public String getSuffix() {
        return this.suffix;
    }
 
    public String getFileType() {
        return this.fileType;
    }
 
    public String getFileBelong() {
        return this.fileBelong;
    }
 
    public String getOperationType() {
        return this.operationType;
    }
 
    public String getOperatorName() {
        return this.operatorName;
    }
 
    public Date getOperationTime() {
        return this.operationTime;
    }
}