package com.qianwen.smartman.modules.cps.vo; import java.io.Serializable; import java.util.List; import javax.validation.constraints.NotEmpty; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/IdsVO.class */ public class IdsVO implements Serializable { private static final long serialVersionUID = -6262141466710124464L; @NotEmpty(message = "id不能为空") private List ids; public void setIds(final List ids) { this.ids = ids; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof IdsVO) { IdsVO other = (IdsVO) o; if (other.canEqual(this)) { Object this$ids = getIds(); Object other$ids = other.getIds(); return this$ids == null ? other$ids == null : this$ids.equals(other$ids); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof IdsVO; } public int hashCode() { Object $ids = getIds(); int result = (1 * 59) + ($ids == null ? 43 : $ids.hashCode()); return result; } public String toString() { return "IdsVO(ids=" + getIds() + ")"; } public List getIds() { return this.ids; } }