package com.skyline.electricity.pojo;
|
|
import java.util.*;
|
import com.skyline.electricity.uwbentity.*;
|
|
public class PersonPosition
|
{
|
private String userId;
|
private String shopId;
|
private String userName;
|
private String userIndex;
|
private String mobile;
|
private String email;
|
private Integer satelliteNum;
|
private String longitude;
|
private String latitude;
|
private String alitude;
|
private String course;
|
private List<Code> events;
|
private String time;
|
private String type;
|
|
public String getUserId() {
|
return this.userId;
|
}
|
|
public String getShopId() {
|
return this.shopId;
|
}
|
|
public String getUserName() {
|
return this.userName;
|
}
|
|
public String getUserIndex() {
|
return this.userIndex;
|
}
|
|
public String getMobile() {
|
return this.mobile;
|
}
|
|
public String getEmail() {
|
return this.email;
|
}
|
|
public Integer getSatelliteNum() {
|
return this.satelliteNum;
|
}
|
|
public String getLongitude() {
|
return this.longitude;
|
}
|
|
public String getLatitude() {
|
return this.latitude;
|
}
|
|
public String getAlitude() {
|
return this.alitude;
|
}
|
|
public String getCourse() {
|
return this.course;
|
}
|
|
public List<Code> getEvents() {
|
return this.events;
|
}
|
|
public String getTime() {
|
return this.time;
|
}
|
|
public String getType() {
|
return this.type;
|
}
|
|
public void setUserId(final String userId) {
|
this.userId = userId;
|
}
|
|
public void setShopId(final String shopId) {
|
this.shopId = shopId;
|
}
|
|
public void setUserName(final String userName) {
|
this.userName = userName;
|
}
|
|
public void setUserIndex(final String userIndex) {
|
this.userIndex = userIndex;
|
}
|
|
public void setMobile(final String mobile) {
|
this.mobile = mobile;
|
}
|
|
public void setEmail(final String email) {
|
this.email = email;
|
}
|
|
public void setSatelliteNum(final Integer satelliteNum) {
|
this.satelliteNum = satelliteNum;
|
}
|
|
public void setLongitude(final String longitude) {
|
this.longitude = longitude;
|
}
|
|
public void setLatitude(final String latitude) {
|
this.latitude = latitude;
|
}
|
|
public void setAlitude(final String alitude) {
|
this.alitude = alitude;
|
}
|
|
public void setCourse(final String course) {
|
this.course = course;
|
}
|
|
public void setEvents(final List<Code> events) {
|
this.events = events;
|
}
|
|
public void setTime(final String time) {
|
this.time = time;
|
}
|
|
public void setType(final String type) {
|
this.type = type;
|
}
|
|
@Override
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (!(o instanceof PersonPosition)) {
|
return false;
|
}
|
final PersonPosition other = (PersonPosition)o;
|
if (!other.canEqual(this)) {
|
return false;
|
}
|
final Object this$userId = this.getUserId();
|
final Object other$userId = other.getUserId();
|
Label_0065: {
|
if (this$userId == null) {
|
if (other$userId == null) {
|
break Label_0065;
|
}
|
}
|
else if (this$userId.equals(other$userId)) {
|
break Label_0065;
|
}
|
return false;
|
}
|
final Object this$shopId = this.getShopId();
|
final Object other$shopId = other.getShopId();
|
Label_0102: {
|
if (this$shopId == null) {
|
if (other$shopId == null) {
|
break Label_0102;
|
}
|
}
|
else if (this$shopId.equals(other$shopId)) {
|
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$userIndex = this.getUserIndex();
|
final Object other$userIndex = other.getUserIndex();
|
Label_0176: {
|
if (this$userIndex == null) {
|
if (other$userIndex == null) {
|
break Label_0176;
|
}
|
}
|
else if (this$userIndex.equals(other$userIndex)) {
|
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$email = this.getEmail();
|
final Object other$email = other.getEmail();
|
Label_0250: {
|
if (this$email == null) {
|
if (other$email == null) {
|
break Label_0250;
|
}
|
}
|
else if (this$email.equals(other$email)) {
|
break Label_0250;
|
}
|
return false;
|
}
|
final Object this$satelliteNum = this.getSatelliteNum();
|
final Object other$satelliteNum = other.getSatelliteNum();
|
Label_0287: {
|
if (this$satelliteNum == null) {
|
if (other$satelliteNum == null) {
|
break Label_0287;
|
}
|
}
|
else if (this$satelliteNum.equals(other$satelliteNum)) {
|
break Label_0287;
|
}
|
return false;
|
}
|
final Object this$longitude = this.getLongitude();
|
final Object other$longitude = other.getLongitude();
|
Label_0324: {
|
if (this$longitude == null) {
|
if (other$longitude == null) {
|
break Label_0324;
|
}
|
}
|
else if (this$longitude.equals(other$longitude)) {
|
break Label_0324;
|
}
|
return false;
|
}
|
final Object this$latitude = this.getLatitude();
|
final Object other$latitude = other.getLatitude();
|
Label_0361: {
|
if (this$latitude == null) {
|
if (other$latitude == null) {
|
break Label_0361;
|
}
|
}
|
else if (this$latitude.equals(other$latitude)) {
|
break Label_0361;
|
}
|
return false;
|
}
|
final Object this$alitude = this.getAlitude();
|
final Object other$alitude = other.getAlitude();
|
Label_0398: {
|
if (this$alitude == null) {
|
if (other$alitude == null) {
|
break Label_0398;
|
}
|
}
|
else if (this$alitude.equals(other$alitude)) {
|
break Label_0398;
|
}
|
return false;
|
}
|
final Object this$course = this.getCourse();
|
final Object other$course = other.getCourse();
|
Label_0435: {
|
if (this$course == null) {
|
if (other$course == null) {
|
break Label_0435;
|
}
|
}
|
else if (this$course.equals(other$course)) {
|
break Label_0435;
|
}
|
return false;
|
}
|
final Object this$events = this.getEvents();
|
final Object other$events = other.getEvents();
|
Label_0472: {
|
if (this$events == null) {
|
if (other$events == null) {
|
break Label_0472;
|
}
|
}
|
else if (this$events.equals(other$events)) {
|
break Label_0472;
|
}
|
return false;
|
}
|
final Object this$time = this.getTime();
|
final Object other$time = other.getTime();
|
Label_0509: {
|
if (this$time == null) {
|
if (other$time == null) {
|
break Label_0509;
|
}
|
}
|
else if (this$time.equals(other$time)) {
|
break Label_0509;
|
}
|
return false;
|
}
|
final Object this$type = this.getType();
|
final Object other$type = other.getType();
|
if (this$type == null) {
|
if (other$type == null) {
|
return true;
|
}
|
}
|
else if (this$type.equals(other$type)) {
|
return true;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof PersonPosition;
|
}
|
|
@Override
|
public int hashCode() {
|
final int PRIME = 59;
|
int result = 1;
|
final Object $userId = this.getUserId();
|
result = result * 59 + (($userId == null) ? 43 : $userId.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 $userIndex = this.getUserIndex();
|
result = result * 59 + (($userIndex == null) ? 43 : $userIndex.hashCode());
|
final Object $mobile = this.getMobile();
|
result = result * 59 + (($mobile == null) ? 43 : $mobile.hashCode());
|
final Object $email = this.getEmail();
|
result = result * 59 + (($email == null) ? 43 : $email.hashCode());
|
final Object $satelliteNum = this.getSatelliteNum();
|
result = result * 59 + (($satelliteNum == null) ? 43 : $satelliteNum.hashCode());
|
final Object $longitude = this.getLongitude();
|
result = result * 59 + (($longitude == null) ? 43 : $longitude.hashCode());
|
final Object $latitude = this.getLatitude();
|
result = result * 59 + (($latitude == null) ? 43 : $latitude.hashCode());
|
final Object $alitude = this.getAlitude();
|
result = result * 59 + (($alitude == null) ? 43 : $alitude.hashCode());
|
final Object $course = this.getCourse();
|
result = result * 59 + (($course == null) ? 43 : $course.hashCode());
|
final Object $events = this.getEvents();
|
result = result * 59 + (($events == null) ? 43 : $events.hashCode());
|
final Object $time = this.getTime();
|
result = result * 59 + (($time == null) ? 43 : $time.hashCode());
|
final Object $type = this.getType();
|
result = result * 59 + (($type == null) ? 43 : $type.hashCode());
|
return result;
|
}
|
|
@Override
|
public String toString() {
|
return "PersonPosition(userId=" + this.getUserId() + ", shopId=" + this.getShopId() + ", userName=" + this.getUserName() + ", userIndex=" + this.getUserIndex() + ", mobile=" + this.getMobile() + ", email=" + this.getEmail() + ", satelliteNum=" + this.getSatelliteNum() + ", longitude=" + this.getLongitude() + ", latitude=" + this.getLatitude() + ", alitude=" + this.getAlitude() + ", course=" + this.getCourse() + ", events=" + this.getEvents() + ", time=" + this.getTime() + ", type=" + this.getType() + ")";
|
}
|
}
|