package com.qianwen.smartman.modules.sync.entity; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/sync/entity/DingUserInnerRole.class */ public class DingUserInnerRole { private String name; private String group_name; private Long id; public void setName(final String name) { this.name = name; } public void setGroup_name(final String group_name) { this.group_name = group_name; } public void setId(final Long id) { this.id = id; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof DingUserInnerRole) { DingUserInnerRole other = (DingUserInnerRole) 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$name = getName(); Object other$name = other.getName(); if (this$name == null) { if (other$name != null) { return false; } } else if (!this$name.equals(other$name)) { return false; } Object this$group_name = getGroup_name(); Object other$group_name = other.getGroup_name(); return this$group_name == null ? other$group_name == null : this$group_name.equals(other$group_name); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof DingUserInnerRole; } public int hashCode() { Object $id = getId(); int result = (1 * 59) + ($id == null ? 43 : $id.hashCode()); Object $name = getName(); int result2 = (result * 59) + ($name == null ? 43 : $name.hashCode()); Object $group_name = getGroup_name(); return (result2 * 59) + ($group_name == null ? 43 : $group_name.hashCode()); } public String toString() { return "DingUserInnerRole(name=" + getName() + ", group_name=" + getGroup_name() + ", id=" + getId() + ")"; } public String getName() { return this.name; } public String getGroup_name() { return this.group_name; } public Long getId() { return this.id; } }