package com.skyline.electricity.uwbentity; public class User { private String tmnOId; private String tmnType; private String mobile; private String tmnDevsn; private String id; private String shopId; private String userName; private String userId; private String email; public String getTmnOId() { return this.tmnOId; } public String getTmnType() { return this.tmnType; } public String getMobile() { return this.mobile; } public String getTmnDevsn() { return this.tmnDevsn; } public String getId() { return this.id; } public String getShopId() { return this.shopId; } public String getUserName() { return this.userName; } public String getUserId() { return this.userId; } public String getEmail() { return this.email; } public void setTmnOId(final String tmnOId) { this.tmnOId = tmnOId; } public void setTmnType(final String tmnType) { this.tmnType = tmnType; } public void setMobile(final String mobile) { this.mobile = mobile; } public void setTmnDevsn(final String tmnDevsn) { this.tmnDevsn = tmnDevsn; } public void setId(final String id) { this.id = id; } public void setShopId(final String shopId) { this.shopId = shopId; } public void setUserName(final String userName) { this.userName = userName; } public void setUserId(final String userId) { this.userId = userId; } public void setEmail(final String email) { this.email = email; } @Override public boolean equals(final Object o) { if (o == this) { return true; } if (!(o instanceof User)) { return false; } final User other = (User)o; if (!other.canEqual(this)) { return false; } final Object this$tmnOId = this.getTmnOId(); final Object other$tmnOId = other.getTmnOId(); Label_0065: { if (this$tmnOId == null) { if (other$tmnOId == null) { break Label_0065; } } else if (this$tmnOId.equals(other$tmnOId)) { break Label_0065; } return false; } final Object this$tmnType = this.getTmnType(); final Object other$tmnType = other.getTmnType(); Label_0102: { if (this$tmnType == null) { if (other$tmnType == null) { break Label_0102; } } else if (this$tmnType.equals(other$tmnType)) { break Label_0102; } return false; } final Object this$mobile = this.getMobile(); final Object other$mobile = other.getMobile(); Label_0139: { if (this$mobile == null) { if (other$mobile == null) { break Label_0139; } } else if (this$mobile.equals(other$mobile)) { break Label_0139; } return false; } final Object this$tmnDevsn = this.getTmnDevsn(); final Object other$tmnDevsn = other.getTmnDevsn(); Label_0176: { if (this$tmnDevsn == null) { if (other$tmnDevsn == null) { break Label_0176; } } else if (this$tmnDevsn.equals(other$tmnDevsn)) { break Label_0176; } return false; } final Object this$id = this.getId(); final Object other$id = other.getId(); Label_0213: { if (this$id == null) { if (other$id == null) { break Label_0213; } } else if (this$id.equals(other$id)) { break Label_0213; } return false; } final Object this$shopId = this.getShopId(); final Object other$shopId = other.getShopId(); Label_0250: { if (this$shopId == null) { if (other$shopId == null) { break Label_0250; } } else if (this$shopId.equals(other$shopId)) { break Label_0250; } return false; } final Object this$userName = this.getUserName(); final Object other$userName = other.getUserName(); Label_0287: { if (this$userName == null) { if (other$userName == null) { break Label_0287; } } else if (this$userName.equals(other$userName)) { break Label_0287; } return false; } final Object this$userId = this.getUserId(); final Object other$userId = other.getUserId(); Label_0324: { if (this$userId == null) { if (other$userId == null) { break Label_0324; } } else if (this$userId.equals(other$userId)) { break Label_0324; } return false; } final Object this$email = this.getEmail(); final Object other$email = other.getEmail(); if (this$email == null) { if (other$email == null) { return true; } } else if (this$email.equals(other$email)) { return true; } return false; } protected boolean canEqual(final Object other) { return other instanceof User; } @Override public int hashCode() { final int PRIME = 59; int result = 1; final Object $tmnOId = this.getTmnOId(); result = result * 59 + (($tmnOId == null) ? 43 : $tmnOId.hashCode()); final Object $tmnType = this.getTmnType(); result = result * 59 + (($tmnType == null) ? 43 : $tmnType.hashCode()); final Object $mobile = this.getMobile(); result = result * 59 + (($mobile == null) ? 43 : $mobile.hashCode()); final Object $tmnDevsn = this.getTmnDevsn(); result = result * 59 + (($tmnDevsn == null) ? 43 : $tmnDevsn.hashCode()); final Object $id = this.getId(); result = result * 59 + (($id == null) ? 43 : $id.hashCode()); final Object $shopId = this.getShopId(); result = result * 59 + (($shopId == null) ? 43 : $shopId.hashCode()); final Object $userName = this.getUserName(); result = result * 59 + (($userName == null) ? 43 : $userName.hashCode()); final Object $userId = this.getUserId(); result = result * 59 + (($userId == null) ? 43 : $userId.hashCode()); final Object $email = this.getEmail(); result = result * 59 + (($email == null) ? 43 : $email.hashCode()); return result; } @Override public String toString() { return "User(tmnOId=" + this.getTmnOId() + ", tmnType=" + this.getTmnType() + ", mobile=" + this.getMobile() + ", tmnDevsn=" + this.getTmnDevsn() + ", id=" + this.getId() + ", shopId=" + this.getShopId() + ", userName=" + this.getUserName() + ", userId=" + this.getUserId() + ", email=" + this.getEmail() + ")"; } }