package com.qianwen.smartman.modules.smis.vo;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import java.io.Serializable;
|
|
public class TrayFaceFixtureVO implements Serializable {
|
private static final long serialVersionUID = 7587333905230996298L;
|
@ApiModelProperty(value = "主键", dataType = "java.lang.String")
|
private Long id;
|
@ApiModelProperty(value = "托盘id", dataType = "java.lang.String")
|
private Long trayId;
|
@ApiModelProperty(value = "托盘面id", dataType = "java.lang.String")
|
private Long faceId;
|
@ApiModelProperty(value = "夹具id", dataType = "java.lang.String")
|
private Long fixId;
|
@ApiModelProperty("夹具编号")
|
private String fixtureCode;
|
@ApiModelProperty("夹具名称")
|
private String fixtureName;
|
|
public void setId(final Long id) {
|
this.id = id;
|
}
|
|
public void setTrayId(final Long trayId) {
|
this.trayId = trayId;
|
}
|
|
public void setFaceId(final Long faceId) {
|
this.faceId = faceId;
|
}
|
|
public void setFixId(final Long fixId) {
|
this.fixId = fixId;
|
}
|
|
public void setFixtureCode(final String fixtureCode) {
|
this.fixtureCode = fixtureCode;
|
}
|
|
public void setFixtureName(final String fixtureName) {
|
this.fixtureName = fixtureName;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof TrayFaceFixtureVO) {
|
TrayFaceFixtureVO other = (TrayFaceFixtureVO) 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$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$faceId = getFaceId();
|
Object other$faceId = other.getFaceId();
|
if (this$faceId == null) {
|
if (other$faceId != null) {
|
return false;
|
}
|
} else if (!this$faceId.equals(other$faceId)) {
|
return false;
|
}
|
Object this$fixId = getFixId();
|
Object other$fixId = other.getFixId();
|
if (this$fixId == null) {
|
if (other$fixId != null) {
|
return false;
|
}
|
} else if (!this$fixId.equals(other$fixId)) {
|
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();
|
return this$fixtureName == null ? other$fixtureName == null : this$fixtureName.equals(other$fixtureName);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof TrayFaceFixtureVO;
|
}
|
|
public int hashCode() {
|
Object $id = getId();
|
int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
|
Object $trayId = getTrayId();
|
int result2 = (result * 59) + ($trayId == null ? 43 : $trayId.hashCode());
|
Object $faceId = getFaceId();
|
int result3 = (result2 * 59) + ($faceId == null ? 43 : $faceId.hashCode());
|
Object $fixId = getFixId();
|
int result4 = (result3 * 59) + ($fixId == null ? 43 : $fixId.hashCode());
|
Object $fixtureCode = getFixtureCode();
|
int result5 = (result4 * 59) + ($fixtureCode == null ? 43 : $fixtureCode.hashCode());
|
Object $fixtureName = getFixtureName();
|
return (result5 * 59) + ($fixtureName == null ? 43 : $fixtureName.hashCode());
|
}
|
|
public String toString() {
|
return "TrayFaceFixtureVO(id=" + getId() + ", trayId=" + getTrayId() + ", faceId=" + getFaceId() + ", fixId=" + getFixId() + ", fixtureCode=" + getFixtureCode() + ", fixtureName=" + getFixtureName() + ")";
|
}
|
|
public Long getId() {
|
return this.id;
|
}
|
|
public Long getTrayId() {
|
return this.trayId;
|
}
|
|
public Long getFaceId() {
|
return this.faceId;
|
}
|
|
public Long getFixId() {
|
return this.fixId;
|
}
|
|
public String getFixtureCode() {
|
return this.fixtureCode;
|
}
|
|
public String getFixtureName() {
|
return this.fixtureName;
|
}
|
}
|