package com.qianwen.smartman.modules.system.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import com.qianwen.smartman.modules.system.entity.MetaObjectType;
|
|
@ApiModel(value = "MetaObjectTypeVO", description = "业务对象VO对象")
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/vo/MetaObjectTypeVO.class */
|
public class MetaObjectTypeVO extends MetaObjectType {
|
private static final long serialVersionUID = 1;
|
|
@Override // org.springblade.modules.system.entity.MetaObjectType
|
public String toString() {
|
return "MetaObjectTypeVO()";
|
}
|
|
@Override // org.springblade.modules.system.entity.MetaObjectType
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof MetaObjectTypeVO) {
|
MetaObjectTypeVO other = (MetaObjectTypeVO) o;
|
return other.canEqual(this) && super.equals(o);
|
}
|
return false;
|
}
|
|
@Override // org.springblade.modules.system.entity.MetaObjectType
|
protected boolean canEqual(final Object other) {
|
return other instanceof MetaObjectTypeVO;
|
}
|
|
@Override // org.springblade.modules.system.entity.MetaObjectType
|
public int hashCode() {
|
int result = super.hashCode();
|
return result;
|
}
|
}
|