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 files; List pictures; public void setFiles(final List files) { this.files = files; } public void setPictures(final List 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 getFiles() { return this.files; } public List getPictures() { return this.pictures; } }