package com.qianwen.smartman.modules.system.dto;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/dto/GalleryItemDTO.class */
|
public class GalleryItemDTO {
|
@ApiModelProperty("图库类别ID")
|
private Long galleryId;
|
|
public void setGalleryId(final Long galleryId) {
|
this.galleryId = galleryId;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof GalleryItemDTO) {
|
GalleryItemDTO other = (GalleryItemDTO) o;
|
if (other.canEqual(this)) {
|
Object this$galleryId = getGalleryId();
|
Object other$galleryId = other.getGalleryId();
|
return this$galleryId == null ? other$galleryId == null : this$galleryId.equals(other$galleryId);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof GalleryItemDTO;
|
}
|
|
public int hashCode() {
|
Object $galleryId = getGalleryId();
|
int result = (1 * 59) + ($galleryId == null ? 43 : $galleryId.hashCode());
|
return result;
|
}
|
|
public String toString() {
|
return "GalleryItemDTO(galleryId=" + getGalleryId() + ")";
|
}
|
|
public Long getGalleryId() {
|
return this.galleryId;
|
}
|
}
|