package com.qianwen.smartman.modules.fms.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
import java.util.Date;
|
import javax.validation.constraints.Size;
|
|
@ApiModel(value = "FmsWorkStationRecordVo对象", description = "blade_fms_work_station_record")
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/vo/FmsWorkStationRecordVO.class */
|
public class FmsWorkStationRecordVO implements Serializable {
|
@ApiModelProperty("工单ID")
|
private Long orderId;
|
@ApiModelProperty("工单工序ID")
|
private Long orderProcessId;
|
@ApiModelProperty("开工工位ID")
|
private Long workStationId;
|
@ApiModelProperty("工位名称")
|
@Size(max = 50, message = "工位名称长度不能超过50")
|
private String workStationName;
|
@ApiModelProperty("开工时间")
|
private Date startTime;
|
@ApiModelProperty("结束时间")
|
private Date endTime;
|
@ApiModelProperty("报工合格数量")
|
private Integer qualifyNum;
|
@ApiModelProperty("报工不合格数量")
|
private Integer unqualifyNum;
|
@ApiModelProperty("报工工时")
|
private Integer workTime;
|
@ApiModelProperty("托盘号")
|
@Size(max = 255, message = "托盘号长度不能超过255")
|
private String trayCode;
|
@ApiModelProperty("零件号")
|
@Size(max = 255, message = "零件号长度不能超过255")
|
private String partCode;
|
@ApiModelProperty("备注")
|
@Size(max = 255, message = "备注长度不能超过255")
|
private String remark;
|
@ApiModelProperty("主键")
|
private Long id;
|
@ApiModelProperty("记录状态")
|
private Integer status;
|
|
public void setOrderId(final Long orderId) {
|
this.orderId = orderId;
|
}
|
|
public void setOrderProcessId(final Long orderProcessId) {
|
this.orderProcessId = orderProcessId;
|
}
|
|
public void setWorkStationId(final Long workStationId) {
|
this.workStationId = workStationId;
|
}
|
|
public void setWorkStationName(final String workStationName) {
|
this.workStationName = workStationName;
|
}
|
|
public void setStartTime(final Date startTime) {
|
this.startTime = startTime;
|
}
|
|
public void setEndTime(final Date endTime) {
|
this.endTime = endTime;
|
}
|
|
public void setQualifyNum(final Integer qualifyNum) {
|
this.qualifyNum = qualifyNum;
|
}
|
|
public void setUnqualifyNum(final Integer unqualifyNum) {
|
this.unqualifyNum = unqualifyNum;
|
}
|
|
public void setWorkTime(final Integer workTime) {
|
this.workTime = workTime;
|
}
|
|
public void setTrayCode(final String trayCode) {
|
this.trayCode = trayCode;
|
}
|
|
public void setPartCode(final String partCode) {
|
this.partCode = partCode;
|
}
|
|
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 FmsWorkStationRecordVO) {
|
FmsWorkStationRecordVO other = (FmsWorkStationRecordVO) o;
|
if (other.canEqual(this)) {
|
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$orderProcessId = getOrderProcessId();
|
Object other$orderProcessId = other.getOrderProcessId();
|
if (this$orderProcessId == null) {
|
if (other$orderProcessId != null) {
|
return false;
|
}
|
} else if (!this$orderProcessId.equals(other$orderProcessId)) {
|
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$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$workTime = getWorkTime();
|
Object other$workTime = other.getWorkTime();
|
if (this$workTime == null) {
|
if (other$workTime != null) {
|
return false;
|
}
|
} else if (!this$workTime.equals(other$workTime)) {
|
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$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$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();
|
if (this$endTime == null) {
|
if (other$endTime != null) {
|
return false;
|
}
|
} else if (!this$endTime.equals(other$endTime)) {
|
return false;
|
}
|
Object this$trayCode = getTrayCode();
|
Object other$trayCode = other.getTrayCode();
|
if (this$trayCode == null) {
|
if (other$trayCode != null) {
|
return false;
|
}
|
} else if (!this$trayCode.equals(other$trayCode)) {
|
return false;
|
}
|
Object this$partCode = getPartCode();
|
Object other$partCode = other.getPartCode();
|
if (this$partCode == null) {
|
if (other$partCode != null) {
|
return false;
|
}
|
} else if (!this$partCode.equals(other$partCode)) {
|
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 FmsWorkStationRecordVO;
|
}
|
|
public int hashCode() {
|
Object $orderId = getOrderId();
|
int result = (1 * 59) + ($orderId == null ? 43 : $orderId.hashCode());
|
Object $orderProcessId = getOrderProcessId();
|
int result2 = (result * 59) + ($orderProcessId == null ? 43 : $orderProcessId.hashCode());
|
Object $workStationId = getWorkStationId();
|
int result3 = (result2 * 59) + ($workStationId == null ? 43 : $workStationId.hashCode());
|
Object $qualifyNum = getQualifyNum();
|
int result4 = (result3 * 59) + ($qualifyNum == null ? 43 : $qualifyNum.hashCode());
|
Object $unqualifyNum = getUnqualifyNum();
|
int result5 = (result4 * 59) + ($unqualifyNum == null ? 43 : $unqualifyNum.hashCode());
|
Object $workTime = getWorkTime();
|
int result6 = (result5 * 59) + ($workTime == null ? 43 : $workTime.hashCode());
|
Object $id = getId();
|
int result7 = (result6 * 59) + ($id == null ? 43 : $id.hashCode());
|
Object $status = getStatus();
|
int result8 = (result7 * 59) + ($status == null ? 43 : $status.hashCode());
|
Object $workStationName = getWorkStationName();
|
int result9 = (result8 * 59) + ($workStationName == null ? 43 : $workStationName.hashCode());
|
Object $startTime = getStartTime();
|
int result10 = (result9 * 59) + ($startTime == null ? 43 : $startTime.hashCode());
|
Object $endTime = getEndTime();
|
int result11 = (result10 * 59) + ($endTime == null ? 43 : $endTime.hashCode());
|
Object $trayCode = getTrayCode();
|
int result12 = (result11 * 59) + ($trayCode == null ? 43 : $trayCode.hashCode());
|
Object $partCode = getPartCode();
|
int result13 = (result12 * 59) + ($partCode == null ? 43 : $partCode.hashCode());
|
Object $remark = getRemark();
|
return (result13 * 59) + ($remark == null ? 43 : $remark.hashCode());
|
}
|
|
public String toString() {
|
return "FmsWorkStationRecordVO(orderId=" + getOrderId() + ", orderProcessId=" + getOrderProcessId() + ", workStationId=" + getWorkStationId() + ", workStationName=" + getWorkStationName() + ", startTime=" + getStartTime() + ", endTime=" + getEndTime() + ", qualifyNum=" + getQualifyNum() + ", unqualifyNum=" + getUnqualifyNum() + ", workTime=" + getWorkTime() + ", trayCode=" + getTrayCode() + ", partCode=" + getPartCode() + ", remark=" + getRemark() + ", id=" + getId() + ", status=" + getStatus() + ")";
|
}
|
|
public Long getOrderId() {
|
return this.orderId;
|
}
|
|
public Long getOrderProcessId() {
|
return this.orderProcessId;
|
}
|
|
public Long getWorkStationId() {
|
return this.workStationId;
|
}
|
|
public String getWorkStationName() {
|
return this.workStationName;
|
}
|
|
public Date getStartTime() {
|
return this.startTime;
|
}
|
|
public Date getEndTime() {
|
return this.endTime;
|
}
|
|
public Integer getQualifyNum() {
|
return this.qualifyNum;
|
}
|
|
public Integer getUnqualifyNum() {
|
return this.unqualifyNum;
|
}
|
|
public Integer getWorkTime() {
|
return this.workTime;
|
}
|
|
public String getTrayCode() {
|
return this.trayCode;
|
}
|
|
public String getPartCode() {
|
return this.partCode;
|
}
|
|
public String getRemark() {
|
return this.remark;
|
}
|
|
public Long getId() {
|
return this.id;
|
}
|
|
public Integer getStatus() {
|
return this.status;
|
}
|
}
|