package com.qianwen.smartman.modules.cps.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/ProcessWarehouseAreaTypeVO.class */
|
public class ProcessWarehouseAreaTypeVO implements Serializable {
|
private static final long serialVersionUID = 1;
|
@ApiModelProperty(name = "id", dataType = "java.lang.String")
|
private Long id;
|
@ApiModelProperty("库区编号")
|
private String warehouseAreaCode;
|
@ApiModelProperty("库区名称")
|
private String warehouseAreaName;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/vo/ProcessWarehouseAreaTypeVO$ProcessWarehouseAreaTypeVOBuilder.class */
|
public static class ProcessWarehouseAreaTypeVOBuilder {
|
private Long id;
|
private String warehouseAreaCode;
|
private String warehouseAreaName;
|
|
ProcessWarehouseAreaTypeVOBuilder() {
|
}
|
|
public ProcessWarehouseAreaTypeVOBuilder id(final Long id) {
|
this.id = id;
|
return this;
|
}
|
|
public ProcessWarehouseAreaTypeVOBuilder warehouseAreaCode(final String warehouseAreaCode) {
|
this.warehouseAreaCode = warehouseAreaCode;
|
return this;
|
}
|
|
public ProcessWarehouseAreaTypeVOBuilder warehouseAreaName(final String warehouseAreaName) {
|
this.warehouseAreaName = warehouseAreaName;
|
return this;
|
}
|
|
public ProcessWarehouseAreaTypeVO build() {
|
return new ProcessWarehouseAreaTypeVO(this.id, this.warehouseAreaCode, this.warehouseAreaName);
|
}
|
|
public String toString() {
|
return "ProcessWarehouseAreaTypeVO.ProcessWarehouseAreaTypeVOBuilder(id=" + this.id + ", warehouseAreaCode=" + this.warehouseAreaCode + ", warehouseAreaName=" + this.warehouseAreaName + ")";
|
}
|
}
|
|
public void setId(final Long id) {
|
this.id = id;
|
}
|
|
public void setWarehouseAreaCode(final String warehouseAreaCode) {
|
this.warehouseAreaCode = warehouseAreaCode;
|
}
|
|
public void setWarehouseAreaName(final String warehouseAreaName) {
|
this.warehouseAreaName = warehouseAreaName;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof ProcessWarehouseAreaTypeVO) {
|
ProcessWarehouseAreaTypeVO other = (ProcessWarehouseAreaTypeVO) o;
|
if (other.canEqual(this)) {
|
Object this$id = getId();
|
Object other$id = other.getId();
|
if (this$id == null) {
|
if (other$id != null) {
|
return false;
|
}
|
} else if (!this$id.equals(other$id)) {
|
return false;
|
}
|
Object this$warehouseAreaCode = getWarehouseAreaCode();
|
Object other$warehouseAreaCode = other.getWarehouseAreaCode();
|
if (this$warehouseAreaCode == null) {
|
if (other$warehouseAreaCode != null) {
|
return false;
|
}
|
} else if (!this$warehouseAreaCode.equals(other$warehouseAreaCode)) {
|
return false;
|
}
|
Object this$warehouseAreaName = getWarehouseAreaName();
|
Object other$warehouseAreaName = other.getWarehouseAreaName();
|
return this$warehouseAreaName == null ? other$warehouseAreaName == null : this$warehouseAreaName.equals(other$warehouseAreaName);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof ProcessWarehouseAreaTypeVO;
|
}
|
|
public int hashCode() {
|
Object $id = getId();
|
int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
|
Object $warehouseAreaCode = getWarehouseAreaCode();
|
int result2 = (result * 59) + ($warehouseAreaCode == null ? 43 : $warehouseAreaCode.hashCode());
|
Object $warehouseAreaName = getWarehouseAreaName();
|
return (result2 * 59) + ($warehouseAreaName == null ? 43 : $warehouseAreaName.hashCode());
|
}
|
|
public String toString() {
|
return "ProcessWarehouseAreaTypeVO(id=" + getId() + ", warehouseAreaCode=" + getWarehouseAreaCode() + ", warehouseAreaName=" + getWarehouseAreaName() + ")";
|
}
|
|
public static ProcessWarehouseAreaTypeVOBuilder builder() {
|
return new ProcessWarehouseAreaTypeVOBuilder();
|
}
|
|
public ProcessWarehouseAreaTypeVO(final Long id, final String warehouseAreaCode, final String warehouseAreaName) {
|
this.id = id;
|
this.warehouseAreaCode = warehouseAreaCode;
|
this.warehouseAreaName = warehouseAreaName;
|
}
|
|
public ProcessWarehouseAreaTypeVO() {
|
}
|
|
public Long getId() {
|
return this.id;
|
}
|
|
public String getWarehouseAreaCode() {
|
return this.warehouseAreaCode;
|
}
|
|
public String getWarehouseAreaName() {
|
return this.warehouseAreaName;
|
}
|
}
|