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