package com.qianwen.smartman.modules.fms.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import com.qianwen.core.mp.base.BaseEntity;
|
|
@ApiModel(value = "FmsOrderProcessFixture对象", description = "工单工序夹具信息")
|
@TableName("blade_fms_order_process_fixture")
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/fms/entity/FmsOrderProcessFixture.class */
|
public class FmsOrderProcessFixture extends BaseEntity {
|
private static final long serialVersionUID = 1;
|
@ApiModelProperty("工单ID")
|
private Long orderId;
|
@ApiModelProperty("工单工序ID")
|
private Long orderProcessId;
|
@ApiModelProperty("夹具ID")
|
private String fixtureId;
|
@ApiModelProperty("夹具编号")
|
private String fixtureCode;
|
@ApiModelProperty("夹具名称")
|
private String fixtureName;
|
@ApiModelProperty("托盘ID")
|
private Long trayId;
|
@ApiModelProperty("托盘号")
|
private String trayCode;
|
@ApiModelProperty("夹具组名称")
|
private String fixtureGroupName;
|
@ApiModelProperty("租户ID")
|
private String tenantId;
|
@ApiModelProperty("备注")
|
private String remark;
|
|
public FmsOrderProcessFixture setOrderId(final Long orderId) {
|
this.orderId = orderId;
|
return this;
|
}
|
|
public FmsOrderProcessFixture setOrderProcessId(final Long orderProcessId) {
|
this.orderProcessId = orderProcessId;
|
return this;
|
}
|
|
public FmsOrderProcessFixture setFixtureId(final String fixtureId) {
|
this.fixtureId = fixtureId;
|
return this;
|
}
|
|
public FmsOrderProcessFixture setFixtureCode(final String fixtureCode) {
|
this.fixtureCode = fixtureCode;
|
return this;
|
}
|
|
public FmsOrderProcessFixture setFixtureName(final String fixtureName) {
|
this.fixtureName = fixtureName;
|
return this;
|
}
|
|
public FmsOrderProcessFixture setTrayId(final Long trayId) {
|
this.trayId = trayId;
|
return this;
|
}
|
|
public FmsOrderProcessFixture setTrayCode(final String trayCode) {
|
this.trayCode = trayCode;
|
return this;
|
}
|
|
public FmsOrderProcessFixture setFixtureGroupName(final String fixtureGroupName) {
|
this.fixtureGroupName = fixtureGroupName;
|
return this;
|
}
|
|
public FmsOrderProcessFixture setTenantId(final String tenantId) {
|
this.tenantId = tenantId;
|
return this;
|
}
|
|
public FmsOrderProcessFixture setRemark(final String remark) {
|
this.remark = remark;
|
return this;
|
}
|
|
public String toString() {
|
return "FmsOrderProcessFixture(orderId=" + getOrderId() + ", orderProcessId=" + getOrderProcessId() + ", fixtureId=" + getFixtureId() + ", fixtureCode=" + getFixtureCode() + ", fixtureName=" + getFixtureName() + ", trayId=" + getTrayId() + ", trayCode=" + getTrayCode() + ", fixtureGroupName=" + getFixtureGroupName() + ", tenantId=" + getTenantId() + ", remark=" + getRemark() + ")";
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof FmsOrderProcessFixture) {
|
FmsOrderProcessFixture other = (FmsOrderProcessFixture) 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$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$trayId = getTrayId();
|
Object other$trayId = other.getTrayId();
|
if (this$trayId == null) {
|
if (other$trayId != null) {
|
return false;
|
}
|
} else if (!this$trayId.equals(other$trayId)) {
|
return false;
|
}
|
Object this$fixtureId = getFixtureId();
|
Object other$fixtureId = other.getFixtureId();
|
if (this$fixtureId == null) {
|
if (other$fixtureId != null) {
|
return false;
|
}
|
} else if (!this$fixtureId.equals(other$fixtureId)) {
|
return false;
|
}
|
Object this$fixtureCode = getFixtureCode();
|
Object other$fixtureCode = other.getFixtureCode();
|
if (this$fixtureCode == null) {
|
if (other$fixtureCode != null) {
|
return false;
|
}
|
} else if (!this$fixtureCode.equals(other$fixtureCode)) {
|
return false;
|
}
|
Object this$fixtureName = getFixtureName();
|
Object other$fixtureName = other.getFixtureName();
|
if (this$fixtureName == null) {
|
if (other$fixtureName != null) {
|
return false;
|
}
|
} else if (!this$fixtureName.equals(other$fixtureName)) {
|
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$fixtureGroupName = getFixtureGroupName();
|
Object other$fixtureGroupName = other.getFixtureGroupName();
|
if (this$fixtureGroupName == null) {
|
if (other$fixtureGroupName != null) {
|
return false;
|
}
|
} else if (!this$fixtureGroupName.equals(other$fixtureGroupName)) {
|
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();
|
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 FmsOrderProcessFixture;
|
}
|
|
public int hashCode() {
|
int result = super.hashCode();
|
Object $orderId = getOrderId();
|
int result2 = (result * 59) + ($orderId == null ? 43 : $orderId.hashCode());
|
Object $orderProcessId = getOrderProcessId();
|
int result3 = (result2 * 59) + ($orderProcessId == null ? 43 : $orderProcessId.hashCode());
|
Object $trayId = getTrayId();
|
int result4 = (result3 * 59) + ($trayId == null ? 43 : $trayId.hashCode());
|
Object $fixtureId = getFixtureId();
|
int result5 = (result4 * 59) + ($fixtureId == null ? 43 : $fixtureId.hashCode());
|
Object $fixtureCode = getFixtureCode();
|
int result6 = (result5 * 59) + ($fixtureCode == null ? 43 : $fixtureCode.hashCode());
|
Object $fixtureName = getFixtureName();
|
int result7 = (result6 * 59) + ($fixtureName == null ? 43 : $fixtureName.hashCode());
|
Object $trayCode = getTrayCode();
|
int result8 = (result7 * 59) + ($trayCode == null ? 43 : $trayCode.hashCode());
|
Object $fixtureGroupName = getFixtureGroupName();
|
int result9 = (result8 * 59) + ($fixtureGroupName == null ? 43 : $fixtureGroupName.hashCode());
|
Object $tenantId = getTenantId();
|
int result10 = (result9 * 59) + ($tenantId == null ? 43 : $tenantId.hashCode());
|
Object $remark = getRemark();
|
return (result10 * 59) + ($remark == null ? 43 : $remark.hashCode());
|
}
|
|
public Long getOrderId() {
|
return this.orderId;
|
}
|
|
public Long getOrderProcessId() {
|
return this.orderProcessId;
|
}
|
|
public String getFixtureId() {
|
return this.fixtureId;
|
}
|
|
public String getFixtureCode() {
|
return this.fixtureCode;
|
}
|
|
public String getFixtureName() {
|
return this.fixtureName;
|
}
|
|
public Long getTrayId() {
|
return this.trayId;
|
}
|
|
public String getTrayCode() {
|
return this.trayCode;
|
}
|
|
public String getFixtureGroupName() {
|
return this.fixtureGroupName;
|
}
|
|
public String getTenantId() {
|
return this.tenantId;
|
}
|
|
public String getRemark() {
|
return this.remark;
|
}
|
}
|