package com.qianwen.smartman.modules.sync.entity; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/sync/entity/QyUserTicket.class */ public class QyUserTicket { private String CorpId; private String UserId; private String DeviceId; private String user_ticket; private String expires_in; private String open_userid; public void setCorpId(final String CorpId) { this.CorpId = CorpId; } public void setUserId(final String UserId) { this.UserId = UserId; } public void setDeviceId(final String DeviceId) { this.DeviceId = DeviceId; } public void setUser_ticket(final String user_ticket) { this.user_ticket = user_ticket; } public void setExpires_in(final String expires_in) { this.expires_in = expires_in; } public void setOpen_userid(final String open_userid) { this.open_userid = open_userid; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof QyUserTicket) { QyUserTicket other = (QyUserTicket) o; if (other.canEqual(this)) { Object this$CorpId = getCorpId(); Object other$CorpId = other.getCorpId(); if (this$CorpId == null) { if (other$CorpId != null) { return false; } } else if (!this$CorpId.equals(other$CorpId)) { return false; } Object this$UserId = getUserId(); Object other$UserId = other.getUserId(); if (this$UserId == null) { if (other$UserId != null) { return false; } } else if (!this$UserId.equals(other$UserId)) { return false; } Object this$DeviceId = getDeviceId(); Object other$DeviceId = other.getDeviceId(); if (this$DeviceId == null) { if (other$DeviceId != null) { return false; } } else if (!this$DeviceId.equals(other$DeviceId)) { return false; } Object this$user_ticket = getUser_ticket(); Object other$user_ticket = other.getUser_ticket(); if (this$user_ticket == null) { if (other$user_ticket != null) { return false; } } else if (!this$user_ticket.equals(other$user_ticket)) { return false; } Object this$expires_in = getExpires_in(); Object other$expires_in = other.getExpires_in(); if (this$expires_in == null) { if (other$expires_in != null) { return false; } } else if (!this$expires_in.equals(other$expires_in)) { return false; } Object this$open_userid = getOpen_userid(); Object other$open_userid = other.getOpen_userid(); return this$open_userid == null ? other$open_userid == null : this$open_userid.equals(other$open_userid); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof QyUserTicket; } public int hashCode() { Object $CorpId = getCorpId(); int result = (1 * 59) + ($CorpId == null ? 43 : $CorpId.hashCode()); Object $UserId = getUserId(); int result2 = (result * 59) + ($UserId == null ? 43 : $UserId.hashCode()); Object $DeviceId = getDeviceId(); int result3 = (result2 * 59) + ($DeviceId == null ? 43 : $DeviceId.hashCode()); Object $user_ticket = getUser_ticket(); int result4 = (result3 * 59) + ($user_ticket == null ? 43 : $user_ticket.hashCode()); Object $expires_in = getExpires_in(); int result5 = (result4 * 59) + ($expires_in == null ? 43 : $expires_in.hashCode()); Object $open_userid = getOpen_userid(); return (result5 * 59) + ($open_userid == null ? 43 : $open_userid.hashCode()); } public String toString() { return "QyUserTicket(CorpId=" + getCorpId() + ", UserId=" + getUserId() + ", DeviceId=" + getDeviceId() + ", user_ticket=" + getUser_ticket() + ", expires_in=" + getExpires_in() + ", open_userid=" + getOpen_userid() + ")"; } public String getCorpId() { return this.CorpId; } public String getUserId() { return this.UserId; } public String getDeviceId() { return this.DeviceId; } public String getUser_ticket() { return this.user_ticket; } public String getExpires_in() { return this.expires_in; } public String getOpen_userid() { return this.open_userid; } }