package com.qianwen.smartman.modules.develop.vo;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/develop/vo/CodeVo.class */
|
public class CodeVo {
|
private Long id;
|
|
public void setId(final Long id) {
|
this.id = id;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof CodeVo) {
|
CodeVo other = (CodeVo) o;
|
if (other.canEqual(this)) {
|
Object this$id = getId();
|
Object other$id = other.getId();
|
return this$id == null ? other$id == null : this$id.equals(other$id);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof CodeVo;
|
}
|
|
public int hashCode() {
|
Object $id = getId();
|
int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
|
return result;
|
}
|
|
public String toString() {
|
return "CodeVo(id=" + getId() + ")";
|
}
|
|
public Long getId() {
|
return this.id;
|
}
|
}
|