package com.qianwen.smartman.modules.fms.entity; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import java.util.Date; import com.qianwen.core.mp.base.BaseEntity; @ApiModel(value = "FmsOrderProcess对象", description = "工单工序信息") @TableName("blade_fms_order_process") /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/entity/FmsOrderProcess.class */ public class FmsOrderProcess extends BaseEntity { private static final long serialVersionUID = 1; @ApiModelProperty("所属工单ID") private Long orderId; @ApiModelProperty("工单工序名称") private String processName; @ApiModelProperty("工单工序编号") private String processCode; @ApiModelProperty("工单工序状态") private Integer processStatus; @ApiModelProperty("工单派发工位ID列表") private String workStationId; @ApiModelProperty("工单派发工位名字列表") private String workStationName; @ApiModelProperty("工序工种") private Integer processType; @ApiModelProperty("工序工种名称") private String processTypeName; @ApiModelProperty("顺序") private Integer sort; @ApiModelProperty("程序ID") private Long programId; @ApiModelProperty("程序名称") private String programName; @ApiModelProperty("合格数量") private Integer qualifyNum; @ApiModelProperty("不合格数量") private Integer unqualifyNum; @ApiModelProperty("上线数量") private Integer onlineNumber; @ApiModelProperty("下线数量") private Integer offlineNumber; @ApiModelProperty("标准工时") private Integer standardTime; @ApiModelProperty("准备工时") private Integer prepareTime; @ApiModelProperty("拆卸工时") private Integer disassemblyTime; @ApiModelProperty("运输工时") private Integer transportTime; @ApiModelProperty("租户ID") private String tenantId; @ApiModelProperty("备注") private String remark; @ApiModelProperty("投产数量") private Integer inputNum; @ApiModelProperty("待派发数量") private Integer distributedNum; @ApiModelProperty("实际开始时间") private Date startTime; @ApiModelProperty("实际结束时间") private Date endTime; public FmsOrderProcess setOrderId(final Long orderId) { this.orderId = orderId; return this; } public FmsOrderProcess setProcessName(final String processName) { this.processName = processName; return this; } public FmsOrderProcess setProcessCode(final String processCode) { this.processCode = processCode; return this; } public FmsOrderProcess setProcessStatus(final Integer processStatus) { this.processStatus = processStatus; return this; } public FmsOrderProcess setWorkStationId(final String workStationId) { this.workStationId = workStationId; return this; } public FmsOrderProcess setWorkStationName(final String workStationName) { this.workStationName = workStationName; return this; } public FmsOrderProcess setProcessType(final Integer processType) { this.processType = processType; return this; } public FmsOrderProcess setProcessTypeName(final String processTypeName) { this.processTypeName = processTypeName; return this; } public FmsOrderProcess setSort(final Integer sort) { this.sort = sort; return this; } public FmsOrderProcess setProgramId(final Long programId) { this.programId = programId; return this; } public FmsOrderProcess setProgramName(final String programName) { this.programName = programName; return this; } public FmsOrderProcess setQualifyNum(final Integer qualifyNum) { this.qualifyNum = qualifyNum; return this; } public FmsOrderProcess setUnqualifyNum(final Integer unqualifyNum) { this.unqualifyNum = unqualifyNum; return this; } public FmsOrderProcess setOnlineNumber(final Integer onlineNumber) { this.onlineNumber = onlineNumber; return this; } public FmsOrderProcess setOfflineNumber(final Integer offlineNumber) { this.offlineNumber = offlineNumber; return this; } public FmsOrderProcess setStandardTime(final Integer standardTime) { this.standardTime = standardTime; return this; } public FmsOrderProcess setPrepareTime(final Integer prepareTime) { this.prepareTime = prepareTime; return this; } public FmsOrderProcess setDisassemblyTime(final Integer disassemblyTime) { this.disassemblyTime = disassemblyTime; return this; } public FmsOrderProcess setTransportTime(final Integer transportTime) { this.transportTime = transportTime; return this; } public FmsOrderProcess setTenantId(final String tenantId) { this.tenantId = tenantId; return this; } public FmsOrderProcess setRemark(final String remark) { this.remark = remark; return this; } public FmsOrderProcess setInputNum(final Integer inputNum) { this.inputNum = inputNum; return this; } public FmsOrderProcess setDistributedNum(final Integer distributedNum) { this.distributedNum = distributedNum; return this; } public FmsOrderProcess setStartTime(final Date startTime) { this.startTime = startTime; return this; } public FmsOrderProcess setEndTime(final Date endTime) { this.endTime = endTime; return this; } public String toString() { return "FmsOrderProcess(orderId=" + getOrderId() + ", processName=" + getProcessName() + ", processCode=" + getProcessCode() + ", processStatus=" + getProcessStatus() + ", workStationId=" + getWorkStationId() + ", workStationName=" + getWorkStationName() + ", processType=" + getProcessType() + ", processTypeName=" + getProcessTypeName() + ", sort=" + getSort() + ", programId=" + getProgramId() + ", programName=" + getProgramName() + ", qualifyNum=" + getQualifyNum() + ", unqualifyNum=" + getUnqualifyNum() + ", onlineNumber=" + getOnlineNumber() + ", offlineNumber=" + getOfflineNumber() + ", standardTime=" + getStandardTime() + ", prepareTime=" + getPrepareTime() + ", disassemblyTime=" + getDisassemblyTime() + ", transportTime=" + getTransportTime() + ", tenantId=" + getTenantId() + ", remark=" + getRemark() + ", inputNum=" + getInputNum() + ", distributedNum=" + getDistributedNum() + ", startTime=" + getStartTime() + ", endTime=" + getEndTime() + ")"; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof FmsOrderProcess) { FmsOrderProcess other = (FmsOrderProcess) o; if (other.canEqual(this) && super.equals(o)) { Object this$orderId = getOrderId(); Object other$orderId = other.getOrderId(); if (this$orderId == null) { if (other$orderId != null) { return false; } } else if (!this$orderId.equals(other$orderId)) { return false; } Object this$processStatus = getProcessStatus(); Object other$processStatus = other.getProcessStatus(); if (this$processStatus == null) { if (other$processStatus != null) { return false; } } else if (!this$processStatus.equals(other$processStatus)) { return false; } Object this$processType = getProcessType(); Object other$processType = other.getProcessType(); if (this$processType == null) { if (other$processType != null) { return false; } } else if (!this$processType.equals(other$processType)) { return false; } Object this$sort = getSort(); Object other$sort = other.getSort(); if (this$sort == null) { if (other$sort != null) { return false; } } else if (!this$sort.equals(other$sort)) { return false; } Object this$programId = getProgramId(); Object other$programId = other.getProgramId(); if (this$programId == null) { if (other$programId != null) { return false; } } else if (!this$programId.equals(other$programId)) { return false; } Object this$qualifyNum = getQualifyNum(); Object other$qualifyNum = other.getQualifyNum(); if (this$qualifyNum == null) { if (other$qualifyNum != null) { return false; } } else if (!this$qualifyNum.equals(other$qualifyNum)) { return false; } Object this$unqualifyNum = getUnqualifyNum(); Object other$unqualifyNum = other.getUnqualifyNum(); if (this$unqualifyNum == null) { if (other$unqualifyNum != null) { return false; } } else if (!this$unqualifyNum.equals(other$unqualifyNum)) { return false; } Object this$onlineNumber = getOnlineNumber(); Object other$onlineNumber = other.getOnlineNumber(); if (this$onlineNumber == null) { if (other$onlineNumber != null) { return false; } } else if (!this$onlineNumber.equals(other$onlineNumber)) { return false; } Object this$offlineNumber = getOfflineNumber(); Object other$offlineNumber = other.getOfflineNumber(); if (this$offlineNumber == null) { if (other$offlineNumber != null) { return false; } } else if (!this$offlineNumber.equals(other$offlineNumber)) { return false; } Object this$standardTime = getStandardTime(); Object other$standardTime = other.getStandardTime(); if (this$standardTime == null) { if (other$standardTime != null) { return false; } } else if (!this$standardTime.equals(other$standardTime)) { return false; } Object this$prepareTime = getPrepareTime(); Object other$prepareTime = other.getPrepareTime(); if (this$prepareTime == null) { if (other$prepareTime != null) { return false; } } else if (!this$prepareTime.equals(other$prepareTime)) { return false; } Object this$disassemblyTime = getDisassemblyTime(); Object other$disassemblyTime = other.getDisassemblyTime(); if (this$disassemblyTime == null) { if (other$disassemblyTime != null) { return false; } } else if (!this$disassemblyTime.equals(other$disassemblyTime)) { return false; } Object this$transportTime = getTransportTime(); Object other$transportTime = other.getTransportTime(); if (this$transportTime == null) { if (other$transportTime != null) { return false; } } else if (!this$transportTime.equals(other$transportTime)) { return false; } Object this$inputNum = getInputNum(); Object other$inputNum = other.getInputNum(); if (this$inputNum == null) { if (other$inputNum != null) { return false; } } else if (!this$inputNum.equals(other$inputNum)) { return false; } Object this$distributedNum = getDistributedNum(); Object other$distributedNum = other.getDistributedNum(); if (this$distributedNum == null) { if (other$distributedNum != null) { return false; } } else if (!this$distributedNum.equals(other$distributedNum)) { return false; } Object this$processName = getProcessName(); Object other$processName = other.getProcessName(); if (this$processName == null) { if (other$processName != null) { return false; } } else if (!this$processName.equals(other$processName)) { return false; } Object this$processCode = getProcessCode(); Object other$processCode = other.getProcessCode(); if (this$processCode == null) { if (other$processCode != null) { return false; } } else if (!this$processCode.equals(other$processCode)) { return false; } Object this$workStationId = getWorkStationId(); Object other$workStationId = other.getWorkStationId(); if (this$workStationId == null) { if (other$workStationId != null) { return false; } } else if (!this$workStationId.equals(other$workStationId)) { return false; } Object this$workStationName = getWorkStationName(); Object other$workStationName = other.getWorkStationName(); if (this$workStationName == null) { if (other$workStationName != null) { return false; } } else if (!this$workStationName.equals(other$workStationName)) { return false; } Object this$processTypeName = getProcessTypeName(); Object other$processTypeName = other.getProcessTypeName(); if (this$processTypeName == null) { if (other$processTypeName != null) { return false; } } else if (!this$processTypeName.equals(other$processTypeName)) { return false; } Object this$programName = getProgramName(); Object other$programName = other.getProgramName(); if (this$programName == null) { if (other$programName != null) { return false; } } else if (!this$programName.equals(other$programName)) { 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$remark = getRemark(); Object other$remark = other.getRemark(); if (this$remark == null) { if (other$remark != null) { return false; } } else if (!this$remark.equals(other$remark)) { return false; } Object this$startTime = getStartTime(); Object other$startTime = other.getStartTime(); if (this$startTime == null) { if (other$startTime != null) { return false; } } else if (!this$startTime.equals(other$startTime)) { return false; } Object this$endTime = getEndTime(); Object other$endTime = other.getEndTime(); return this$endTime == null ? other$endTime == null : this$endTime.equals(other$endTime); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof FmsOrderProcess; } public int hashCode() { int result = super.hashCode(); Object $orderId = getOrderId(); int result2 = (result * 59) + ($orderId == null ? 43 : $orderId.hashCode()); Object $processStatus = getProcessStatus(); int result3 = (result2 * 59) + ($processStatus == null ? 43 : $processStatus.hashCode()); Object $processType = getProcessType(); int result4 = (result3 * 59) + ($processType == null ? 43 : $processType.hashCode()); Object $sort = getSort(); int result5 = (result4 * 59) + ($sort == null ? 43 : $sort.hashCode()); Object $programId = getProgramId(); int result6 = (result5 * 59) + ($programId == null ? 43 : $programId.hashCode()); Object $qualifyNum = getQualifyNum(); int result7 = (result6 * 59) + ($qualifyNum == null ? 43 : $qualifyNum.hashCode()); Object $unqualifyNum = getUnqualifyNum(); int result8 = (result7 * 59) + ($unqualifyNum == null ? 43 : $unqualifyNum.hashCode()); Object $onlineNumber = getOnlineNumber(); int result9 = (result8 * 59) + ($onlineNumber == null ? 43 : $onlineNumber.hashCode()); Object $offlineNumber = getOfflineNumber(); int result10 = (result9 * 59) + ($offlineNumber == null ? 43 : $offlineNumber.hashCode()); Object $standardTime = getStandardTime(); int result11 = (result10 * 59) + ($standardTime == null ? 43 : $standardTime.hashCode()); Object $prepareTime = getPrepareTime(); int result12 = (result11 * 59) + ($prepareTime == null ? 43 : $prepareTime.hashCode()); Object $disassemblyTime = getDisassemblyTime(); int result13 = (result12 * 59) + ($disassemblyTime == null ? 43 : $disassemblyTime.hashCode()); Object $transportTime = getTransportTime(); int result14 = (result13 * 59) + ($transportTime == null ? 43 : $transportTime.hashCode()); Object $inputNum = getInputNum(); int result15 = (result14 * 59) + ($inputNum == null ? 43 : $inputNum.hashCode()); Object $distributedNum = getDistributedNum(); int result16 = (result15 * 59) + ($distributedNum == null ? 43 : $distributedNum.hashCode()); Object $processName = getProcessName(); int result17 = (result16 * 59) + ($processName == null ? 43 : $processName.hashCode()); Object $processCode = getProcessCode(); int result18 = (result17 * 59) + ($processCode == null ? 43 : $processCode.hashCode()); Object $workStationId = getWorkStationId(); int result19 = (result18 * 59) + ($workStationId == null ? 43 : $workStationId.hashCode()); Object $workStationName = getWorkStationName(); int result20 = (result19 * 59) + ($workStationName == null ? 43 : $workStationName.hashCode()); Object $processTypeName = getProcessTypeName(); int result21 = (result20 * 59) + ($processTypeName == null ? 43 : $processTypeName.hashCode()); Object $programName = getProgramName(); int result22 = (result21 * 59) + ($programName == null ? 43 : $programName.hashCode()); Object $tenantId = getTenantId(); int result23 = (result22 * 59) + ($tenantId == null ? 43 : $tenantId.hashCode()); Object $remark = getRemark(); int result24 = (result23 * 59) + ($remark == null ? 43 : $remark.hashCode()); Object $startTime = getStartTime(); int result25 = (result24 * 59) + ($startTime == null ? 43 : $startTime.hashCode()); Object $endTime = getEndTime(); return (result25 * 59) + ($endTime == null ? 43 : $endTime.hashCode()); } public Long getOrderId() { return this.orderId; } public String getProcessName() { return this.processName; } public String getProcessCode() { return this.processCode; } public Integer getProcessStatus() { return this.processStatus; } public String getWorkStationId() { return this.workStationId; } public String getWorkStationName() { return this.workStationName; } public Integer getProcessType() { return this.processType; } public String getProcessTypeName() { return this.processTypeName; } public Integer getSort() { return this.sort; } public Long getProgramId() { return this.programId; } public String getProgramName() { return this.programName; } public Integer getQualifyNum() { return this.qualifyNum; } public Integer getUnqualifyNum() { return this.unqualifyNum; } public Integer getOnlineNumber() { return this.onlineNumber; } public Integer getOfflineNumber() { return this.offlineNumber; } public Integer getStandardTime() { return this.standardTime; } public Integer getPrepareTime() { return this.prepareTime; } public Integer getDisassemblyTime() { return this.disassemblyTime; } public Integer getTransportTime() { return this.transportTime; } public String getTenantId() { return this.tenantId; } public String getRemark() { return this.remark; } public Integer getInputNum() { return this.inputNum; } public Integer getDistributedNum() { return this.distributedNum; } public Date getStartTime() { return this.startTime; } public Date getEndTime() { return this.endTime; } }