package com.qianwen.smartman.modules.cps.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/cps/vo/TrayStorageAddVO.class */
|
public class TrayStorageAddVO implements Serializable {
|
private static final long serialVersionUID = 3551521163458367654L;
|
@ApiModelProperty("托盘id")
|
private List<Long> trayIds;
|
@ApiModelProperty(value = "库位id", dataType = "java.lang.String")
|
private Long warehouseStationId;
|
|
public void setTrayIds(final List<Long> trayIds) {
|
this.trayIds = trayIds;
|
}
|
|
public void setWarehouseStationId(final Long warehouseStationId) {
|
this.warehouseStationId = warehouseStationId;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof TrayStorageAddVO) {
|
TrayStorageAddVO other = (TrayStorageAddVO) o;
|
if (other.canEqual(this)) {
|
Object this$warehouseStationId = getWarehouseStationId();
|
Object other$warehouseStationId = other.getWarehouseStationId();
|
if (this$warehouseStationId == null) {
|
if (other$warehouseStationId != null) {
|
return false;
|
}
|
} else if (!this$warehouseStationId.equals(other$warehouseStationId)) {
|
return false;
|
}
|
Object this$trayIds = getTrayIds();
|
Object other$trayIds = other.getTrayIds();
|
return this$trayIds == null ? other$trayIds == null : this$trayIds.equals(other$trayIds);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof TrayStorageAddVO;
|
}
|
|
public int hashCode() {
|
Object $warehouseStationId = getWarehouseStationId();
|
int result = (1 * 59) + ($warehouseStationId == null ? 43 : $warehouseStationId.hashCode());
|
Object $trayIds = getTrayIds();
|
return (result * 59) + ($trayIds == null ? 43 : $trayIds.hashCode());
|
}
|
|
public String toString() {
|
return "TrayStorageAddVO(trayIds=" + getTrayIds() + ", warehouseStationId=" + getWarehouseStationId() + ")";
|
}
|
|
public List<Long> getTrayIds() {
|
return this.trayIds;
|
}
|
|
public Long getWarehouseStationId() {
|
return this.warehouseStationId;
|
}
|
}
|