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
package com.qianwen.smartman.modules.tpm.vo;
 
import java.io.Serializable;
import java.util.List;
import com.qianwen.smartman.modules.tpm.dto.CheckRecordFileDTO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/vo/RecordFilesVO.class */
public class RecordFilesVO implements Serializable {
    private static final long serialVersionUID = 5785733964159034234L;
    List<CheckRecordFileDTO> files;
    List<CheckRecordFileDTO> pictures;
 
    public void setFiles(final List<CheckRecordFileDTO> files) {
        this.files = files;
    }
 
    public void setPictures(final List<CheckRecordFileDTO> pictures) {
        this.pictures = pictures;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof RecordFilesVO) {
            RecordFilesVO other = (RecordFilesVO) o;
            if (other.canEqual(this)) {
                Object this$files = getFiles();
                Object other$files = other.getFiles();
                if (this$files == null) {
                    if (other$files != null) {
                        return false;
                    }
                } else if (!this$files.equals(other$files)) {
                    return false;
                }
                Object this$pictures = getPictures();
                Object other$pictures = other.getPictures();
                return this$pictures == null ? other$pictures == null : this$pictures.equals(other$pictures);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof RecordFilesVO;
    }
 
    public int hashCode() {
        Object $files = getFiles();
        int result = (1 * 59) + ($files == null ? 43 : $files.hashCode());
        Object $pictures = getPictures();
        return (result * 59) + ($pictures == null ? 43 : $pictures.hashCode());
    }
 
    public String toString() {
        return "RecordFilesVO(files=" + getFiles() + ", pictures=" + getPictures() + ")";
    }
 
    public List<CheckRecordFileDTO> getFiles() {
        return this.files;
    }
 
    public List<CheckRecordFileDTO> getPictures() {
        return this.pictures;
    }
}