package com.qianwen.smartman.modules.dnc.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.List; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/SuffixListVO.class */ public class SuffixListVO implements Serializable { private static final long serialVersionUID = 2920260563526474950L; @ApiModelProperty("åŽįž€é›†åˆ") private List suffix; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/dnc/vo/SuffixListVO$SuffixListVOBuilder.class */ public static class SuffixListVOBuilder { private List suffix; SuffixListVOBuilder() { } public SuffixListVOBuilder suffix(final List suffix) { this.suffix = suffix; return this; } public SuffixListVO build() { return new SuffixListVO(this.suffix); } public String toString() { return "SuffixListVO.SuffixListVOBuilder(suffix=" + this.suffix + ")"; } } public void setSuffix(final List suffix) { this.suffix = suffix; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof SuffixListVO) { SuffixListVO other = (SuffixListVO) o; if (other.canEqual(this)) { Object this$suffix = getSuffix(); Object other$suffix = other.getSuffix(); return this$suffix == null ? other$suffix == null : this$suffix.equals(other$suffix); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof SuffixListVO; } public int hashCode() { Object $suffix = getSuffix(); int result = (1 * 59) + ($suffix == null ? 43 : $suffix.hashCode()); return result; } public String toString() { return "SuffixListVO(suffix=" + getSuffix() + ")"; } public static SuffixListVOBuilder builder() { return new SuffixListVOBuilder(); } public SuffixListVO() { } public SuffixListVO(final List suffix) { this.suffix = suffix; } public List getSuffix() { return this.suffix; } }