package com.qianwen.smartman.modules.smis.vo;
|
|
import java.io.Serializable;
|
import java.util.List;
|
import com.qianwen.smartman.modules.smis.dto.RemoveIdsDTO;
|
|
public class TrayFixRemoveVO implements Serializable {
|
private static final long serialVersionUID = 1729402050187835524L;
|
private List<RemoveIdsDTO> ids;
|
|
public void setIds(final List<RemoveIdsDTO> ids) {
|
this.ids = ids;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof TrayFixRemoveVO) {
|
TrayFixRemoveVO other = (TrayFixRemoveVO) 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 TrayFixRemoveVO;
|
}
|
|
public int hashCode() {
|
Object $ids = getIds();
|
int result = (1 * 59) + ($ids == null ? 43 : $ids.hashCode());
|
return result;
|
}
|
|
public String toString() {
|
return "TrayFixRemoveVO(ids=" + getIds() + ")";
|
}
|
|
public List<RemoveIdsDTO> getIds() {
|
return this.ids;
|
}
|
}
|