package com.qianwen.smartman.modules.smis.vo; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; import io.swagger.annotations.ApiModelProperty; public class TagCommonGroupVO { private static final long serialVersionUID = 1; @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty("主键") private Long id; @ApiModelProperty("组标签") private String groupTag; public void setId(final Long id) { this.id = id; } public void setGroupTag(final String groupTag) { this.groupTag = groupTag; } public String toString() { return "TagCommonGroupVO(id=" + getId() + ", groupTag=" + getGroupTag() + ")"; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof TagCommonGroupVO) { TagCommonGroupVO other = (TagCommonGroupVO) 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$groupTag = getGroupTag(); Object other$groupTag = other.getGroupTag(); return this$groupTag == null ? other$groupTag == null : this$groupTag.equals(other$groupTag); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof TagCommonGroupVO; } public int hashCode() { Object $id = getId(); int result = (1 * 59) + ($id == null ? 43 : $id.hashCode()); Object $groupTag = getGroupTag(); return (result * 59) + ($groupTag == null ? 43 : $groupTag.hashCode()); } public Long getId() { return this.id; } public String getGroupTag() { return this.groupTag; } }