package com.skyline.electricity.pojo;
|
|
public class Fence_User
|
{
|
private Integer id;
|
private String userId;
|
private String username;
|
private String org_name;
|
private String mobile;
|
private String workId;
|
|
public Integer getId() {
|
return this.id;
|
}
|
|
public String getUserId() {
|
return this.userId;
|
}
|
|
public String getUsername() {
|
return this.username;
|
}
|
|
public String getOrg_name() {
|
return this.org_name;
|
}
|
|
public String getMobile() {
|
return this.mobile;
|
}
|
|
public String getWorkId() {
|
return this.workId;
|
}
|
|
public void setId(final Integer id) {
|
this.id = id;
|
}
|
|
public void setUserId(final String userId) {
|
this.userId = userId;
|
}
|
|
public void setUsername(final String username) {
|
this.username = username;
|
}
|
|
public void setOrg_name(final String org_name) {
|
this.org_name = org_name;
|
}
|
|
public void setMobile(final String mobile) {
|
this.mobile = mobile;
|
}
|
|
public void setWorkId(final String workId) {
|
this.workId = workId;
|
}
|
|
@Override
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (!(o instanceof Fence_User)) {
|
return false;
|
}
|
final Fence_User other = (Fence_User)o;
|
if (!other.canEqual(this)) {
|
return false;
|
}
|
final Object this$id = this.getId();
|
final Object other$id = other.getId();
|
Label_0065: {
|
if (this$id == null) {
|
if (other$id == null) {
|
break Label_0065;
|
}
|
}
|
else if (this$id.equals(other$id)) {
|
break Label_0065;
|
}
|
return false;
|
}
|
final Object this$userId = this.getUserId();
|
final Object other$userId = other.getUserId();
|
Label_0102: {
|
if (this$userId == null) {
|
if (other$userId == null) {
|
break Label_0102;
|
}
|
}
|
else if (this$userId.equals(other$userId)) {
|
break Label_0102;
|
}
|
return false;
|
}
|
final Object this$username = this.getUsername();
|
final Object other$username = other.getUsername();
|
Label_0139: {
|
if (this$username == null) {
|
if (other$username == null) {
|
break Label_0139;
|
}
|
}
|
else if (this$username.equals(other$username)) {
|
break Label_0139;
|
}
|
return false;
|
}
|
final Object this$org_name = this.getOrg_name();
|
final Object other$org_name = other.getOrg_name();
|
Label_0176: {
|
if (this$org_name == null) {
|
if (other$org_name == null) {
|
break Label_0176;
|
}
|
}
|
else if (this$org_name.equals(other$org_name)) {
|
break Label_0176;
|
}
|
return false;
|
}
|
final Object this$mobile = this.getMobile();
|
final Object other$mobile = other.getMobile();
|
Label_0213: {
|
if (this$mobile == null) {
|
if (other$mobile == null) {
|
break Label_0213;
|
}
|
}
|
else if (this$mobile.equals(other$mobile)) {
|
break Label_0213;
|
}
|
return false;
|
}
|
final Object this$workId = this.getWorkId();
|
final Object other$workId = other.getWorkId();
|
if (this$workId == null) {
|
if (other$workId == null) {
|
return true;
|
}
|
}
|
else if (this$workId.equals(other$workId)) {
|
return true;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof Fence_User;
|
}
|
|
@Override
|
public int hashCode() {
|
final int PRIME = 59;
|
int result = 1;
|
final Object $id = this.getId();
|
result = result * 59 + (($id == null) ? 43 : $id.hashCode());
|
final Object $userId = this.getUserId();
|
result = result * 59 + (($userId == null) ? 43 : $userId.hashCode());
|
final Object $username = this.getUsername();
|
result = result * 59 + (($username == null) ? 43 : $username.hashCode());
|
final Object $org_name = this.getOrg_name();
|
result = result * 59 + (($org_name == null) ? 43 : $org_name.hashCode());
|
final Object $mobile = this.getMobile();
|
result = result * 59 + (($mobile == null) ? 43 : $mobile.hashCode());
|
final Object $workId = this.getWorkId();
|
result = result * 59 + (($workId == null) ? 43 : $workId.hashCode());
|
return result;
|
}
|
|
@Override
|
public String toString() {
|
return "Fence_User(id=" + this.getId() + ", userId=" + this.getUserId() + ", username=" + this.getUsername() + ", org_name=" + this.getOrg_name() + ", mobile=" + this.getMobile() + ", workId=" + this.getWorkId() + ")";
|
}
|
}
|