package com.qianwen.smartman.modules.smis.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; @ApiModel(value = "BomMaterialVo对象", description = "bom物料") public class BomMaterialVO implements Serializable { @ApiModelProperty("所属租户") @Size(max = 12, message = "所属租户长度不能超过12") private String tenantId; @NotNull(message = "bom版本Id不能为空") @ApiModelProperty(value = "bom版本id", dataType = "java.lang.String") private Long versionId; @NotNull(message = "物料Id不能为空") @ApiModelProperty(value = "物料id", dataType = "java.lang.String") private Long materialId; @ApiModelProperty(value = "父级Id", dataType = "java.lang.String") private Long parentId; @ApiModelProperty("allPath") @Size(max = 255, message = "allPath长度不能超过255") private String allPath; @ApiModelProperty("备注") @Size(max = 255, message = "备注长度不能超过255") private String remark; @ApiModelProperty(value = "主键", dataType = "java.lang.String") private Long id; @ApiModelProperty("状态") private Integer status; public void setTenantId(final String tenantId) { this.tenantId = tenantId; } public void setVersionId(final Long versionId) { this.versionId = versionId; } public void setMaterialId(final Long materialId) { this.materialId = materialId; } public void setParentId(final Long parentId) { this.parentId = parentId; } public void setAllPath(final String allPath) { this.allPath = allPath; } public void setRemark(final String remark) { this.remark = remark; } public void setId(final Long id) { this.id = id; } public void setStatus(final Integer status) { this.status = status; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof BomMaterialVO) { BomMaterialVO other = (BomMaterialVO) o; if (other.canEqual(this)) { Object this$versionId = getVersionId(); Object other$versionId = other.getVersionId(); if (this$versionId == null) { if (other$versionId != null) { return false; } } else if (!this$versionId.equals(other$versionId)) { return false; } Object this$materialId = getMaterialId(); Object other$materialId = other.getMaterialId(); if (this$materialId == null) { if (other$materialId != null) { return false; } } else if (!this$materialId.equals(other$materialId)) { return false; } Object this$parentId = getParentId(); Object other$parentId = other.getParentId(); if (this$parentId == null) { if (other$parentId != null) { return false; } } else if (!this$parentId.equals(other$parentId)) { return false; } 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$status = getStatus(); Object other$status = other.getStatus(); if (this$status == null) { if (other$status != null) { return false; } } else if (!this$status.equals(other$status)) { return false; } Object this$tenantId = getTenantId(); Object other$tenantId = other.getTenantId(); if (this$tenantId == null) { if (other$tenantId != null) { return false; } } else if (!this$tenantId.equals(other$tenantId)) { return false; } Object this$allPath = getAllPath(); Object other$allPath = other.getAllPath(); if (this$allPath == null) { if (other$allPath != null) { return false; } } else if (!this$allPath.equals(other$allPath)) { return false; } Object this$remark = getRemark(); Object other$remark = other.getRemark(); return this$remark == null ? other$remark == null : this$remark.equals(other$remark); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof BomMaterialVO; } public int hashCode() { Object $versionId = getVersionId(); int result = (1 * 59) + ($versionId == null ? 43 : $versionId.hashCode()); Object $materialId = getMaterialId(); int result2 = (result * 59) + ($materialId == null ? 43 : $materialId.hashCode()); Object $parentId = getParentId(); int result3 = (result2 * 59) + ($parentId == null ? 43 : $parentId.hashCode()); Object $id = getId(); int result4 = (result3 * 59) + ($id == null ? 43 : $id.hashCode()); Object $status = getStatus(); int result5 = (result4 * 59) + ($status == null ? 43 : $status.hashCode()); Object $tenantId = getTenantId(); int result6 = (result5 * 59) + ($tenantId == null ? 43 : $tenantId.hashCode()); Object $allPath = getAllPath(); int result7 = (result6 * 59) + ($allPath == null ? 43 : $allPath.hashCode()); Object $remark = getRemark(); return (result7 * 59) + ($remark == null ? 43 : $remark.hashCode()); } public String toString() { return "BomMaterialVO(tenantId=" + getTenantId() + ", versionId=" + getVersionId() + ", materialId=" + getMaterialId() + ", parentId=" + getParentId() + ", allPath=" + getAllPath() + ", remark=" + getRemark() + ", id=" + getId() + ", status=" + getStatus() + ")"; } public String getTenantId() { return this.tenantId; } public Long getVersionId() { return this.versionId; } public Long getMaterialId() { return this.materialId; } public Long getParentId() { return this.parentId; } public String getAllPath() { return this.allPath; } public String getRemark() { return this.remark; } public Long getId() { return this.id; } public Integer getStatus() { return this.status; } }