package com.qianwen.smartman.modules.mdc.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.Collection;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/SplitFilterListVO.class */
|
public class SplitFilterListVO implements Serializable {
|
private static final long serialVersionUID = 1;
|
@ApiModelProperty("分割后的条件列表")
|
private Collection<SplitFilterVO> items;
|
|
public void setItems(final Collection<SplitFilterVO> items) {
|
this.items = items;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof SplitFilterListVO) {
|
SplitFilterListVO other = (SplitFilterListVO) o;
|
if (other.canEqual(this)) {
|
Object this$items = getItems();
|
Object other$items = other.getItems();
|
return this$items == null ? other$items == null : this$items.equals(other$items);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof SplitFilterListVO;
|
}
|
|
public int hashCode() {
|
Object $items = getItems();
|
int result = (1 * 59) + ($items == null ? 43 : $items.hashCode());
|
return result;
|
}
|
|
public String toString() {
|
return "SplitFilterListVO(items=" + getItems() + ")";
|
}
|
|
public Collection<SplitFilterVO> getItems() {
|
return this.items;
|
}
|
}
|