package com.skyline.electricity.pojo;
|
|
public class Monitor
|
{
|
private Integer gid;
|
private String te_type;
|
private String te_desc;
|
private String te_fname;
|
private double te_yaw;
|
private double te_pitch;
|
private double te_scale;
|
private double te_roll;
|
private double te_width;
|
private double te_height;
|
private double te_length;
|
private String gemo;
|
private String regionPath;
|
private String transPtz;
|
private String cameraName;
|
private String cameraIndex;
|
private String status;
|
|
public Integer getGid() {
|
return this.gid;
|
}
|
|
public String getTe_type() {
|
return this.te_type;
|
}
|
|
public String getTe_desc() {
|
return this.te_desc;
|
}
|
|
public String getTe_fname() {
|
return this.te_fname;
|
}
|
|
public double getTe_yaw() {
|
return this.te_yaw;
|
}
|
|
public double getTe_pitch() {
|
return this.te_pitch;
|
}
|
|
public double getTe_scale() {
|
return this.te_scale;
|
}
|
|
public double getTe_roll() {
|
return this.te_roll;
|
}
|
|
public double getTe_width() {
|
return this.te_width;
|
}
|
|
public double getTe_height() {
|
return this.te_height;
|
}
|
|
public double getTe_length() {
|
return this.te_length;
|
}
|
|
public String getGemo() {
|
return this.gemo;
|
}
|
|
public String getRegionPath() {
|
return this.regionPath;
|
}
|
|
public String getTransPtz() {
|
return this.transPtz;
|
}
|
|
public String getCameraName() {
|
return this.cameraName;
|
}
|
|
public String getCameraIndex() {
|
return this.cameraIndex;
|
}
|
|
public String getStatus() {
|
return this.status;
|
}
|
|
public void setGid(final Integer gid) {
|
this.gid = gid;
|
}
|
|
public void setTe_type(final String te_type) {
|
this.te_type = te_type;
|
}
|
|
public void setTe_desc(final String te_desc) {
|
this.te_desc = te_desc;
|
}
|
|
public void setTe_fname(final String te_fname) {
|
this.te_fname = te_fname;
|
}
|
|
public void setTe_yaw(final double te_yaw) {
|
this.te_yaw = te_yaw;
|
}
|
|
public void setTe_pitch(final double te_pitch) {
|
this.te_pitch = te_pitch;
|
}
|
|
public void setTe_scale(final double te_scale) {
|
this.te_scale = te_scale;
|
}
|
|
public void setTe_roll(final double te_roll) {
|
this.te_roll = te_roll;
|
}
|
|
public void setTe_width(final double te_width) {
|
this.te_width = te_width;
|
}
|
|
public void setTe_height(final double te_height) {
|
this.te_height = te_height;
|
}
|
|
public void setTe_length(final double te_length) {
|
this.te_length = te_length;
|
}
|
|
public void setGemo(final String gemo) {
|
this.gemo = gemo;
|
}
|
|
public void setRegionPath(final String regionPath) {
|
this.regionPath = regionPath;
|
}
|
|
public void setTransPtz(final String transPtz) {
|
this.transPtz = transPtz;
|
}
|
|
public void setCameraName(final String cameraName) {
|
this.cameraName = cameraName;
|
}
|
|
public void setCameraIndex(final String cameraIndex) {
|
this.cameraIndex = cameraIndex;
|
}
|
|
public void setStatus(final String status) {
|
this.status = status;
|
}
|
|
@Override
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (!(o instanceof Monitor)) {
|
return false;
|
}
|
final Monitor other = (Monitor)o;
|
if (!other.canEqual(this)) {
|
return false;
|
}
|
final Object this$gid = this.getGid();
|
final Object other$gid = other.getGid();
|
Label_0065: {
|
if (this$gid == null) {
|
if (other$gid == null) {
|
break Label_0065;
|
}
|
}
|
else if (this$gid.equals(other$gid)) {
|
break Label_0065;
|
}
|
return false;
|
}
|
final Object this$te_type = this.getTe_type();
|
final Object other$te_type = other.getTe_type();
|
Label_0102: {
|
if (this$te_type == null) {
|
if (other$te_type == null) {
|
break Label_0102;
|
}
|
}
|
else if (this$te_type.equals(other$te_type)) {
|
break Label_0102;
|
}
|
return false;
|
}
|
final Object this$te_desc = this.getTe_desc();
|
final Object other$te_desc = other.getTe_desc();
|
Label_0139: {
|
if (this$te_desc == null) {
|
if (other$te_desc == null) {
|
break Label_0139;
|
}
|
}
|
else if (this$te_desc.equals(other$te_desc)) {
|
break Label_0139;
|
}
|
return false;
|
}
|
final Object this$te_fname = this.getTe_fname();
|
final Object other$te_fname = other.getTe_fname();
|
Label_0176: {
|
if (this$te_fname == null) {
|
if (other$te_fname == null) {
|
break Label_0176;
|
}
|
}
|
else if (this$te_fname.equals(other$te_fname)) {
|
break Label_0176;
|
}
|
return false;
|
}
|
if (Double.compare(this.getTe_yaw(), other.getTe_yaw()) != 0) {
|
return false;
|
}
|
if (Double.compare(this.getTe_pitch(), other.getTe_pitch()) != 0) {
|
return false;
|
}
|
if (Double.compare(this.getTe_scale(), other.getTe_scale()) != 0) {
|
return false;
|
}
|
if (Double.compare(this.getTe_roll(), other.getTe_roll()) != 0) {
|
return false;
|
}
|
if (Double.compare(this.getTe_width(), other.getTe_width()) != 0) {
|
return false;
|
}
|
if (Double.compare(this.getTe_height(), other.getTe_height()) != 0) {
|
return false;
|
}
|
if (Double.compare(this.getTe_length(), other.getTe_length()) != 0) {
|
return false;
|
}
|
final Object this$gemo = this.getGemo();
|
final Object other$gemo = other.getGemo();
|
Label_0325: {
|
if (this$gemo == null) {
|
if (other$gemo == null) {
|
break Label_0325;
|
}
|
}
|
else if (this$gemo.equals(other$gemo)) {
|
break Label_0325;
|
}
|
return false;
|
}
|
final Object this$regionPath = this.getRegionPath();
|
final Object other$regionPath = other.getRegionPath();
|
Label_0362: {
|
if (this$regionPath == null) {
|
if (other$regionPath == null) {
|
break Label_0362;
|
}
|
}
|
else if (this$regionPath.equals(other$regionPath)) {
|
break Label_0362;
|
}
|
return false;
|
}
|
final Object this$transPtz = this.getTransPtz();
|
final Object other$transPtz = other.getTransPtz();
|
Label_0399: {
|
if (this$transPtz == null) {
|
if (other$transPtz == null) {
|
break Label_0399;
|
}
|
}
|
else if (this$transPtz.equals(other$transPtz)) {
|
break Label_0399;
|
}
|
return false;
|
}
|
final Object this$cameraName = this.getCameraName();
|
final Object other$cameraName = other.getCameraName();
|
Label_0436: {
|
if (this$cameraName == null) {
|
if (other$cameraName == null) {
|
break Label_0436;
|
}
|
}
|
else if (this$cameraName.equals(other$cameraName)) {
|
break Label_0436;
|
}
|
return false;
|
}
|
final Object this$cameraIndex = this.getCameraIndex();
|
final Object other$cameraIndex = other.getCameraIndex();
|
Label_0473: {
|
if (this$cameraIndex == null) {
|
if (other$cameraIndex == null) {
|
break Label_0473;
|
}
|
}
|
else if (this$cameraIndex.equals(other$cameraIndex)) {
|
break Label_0473;
|
}
|
return false;
|
}
|
final Object this$status = this.getStatus();
|
final Object other$status = other.getStatus();
|
if (this$status == null) {
|
if (other$status == null) {
|
return true;
|
}
|
}
|
else if (this$status.equals(other$status)) {
|
return true;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof Monitor;
|
}
|
|
@Override
|
public int hashCode() {
|
final int PRIME = 59;
|
int result = 1;
|
final Object $gid = this.getGid();
|
result = result * 59 + (($gid == null) ? 43 : $gid.hashCode());
|
final Object $te_type = this.getTe_type();
|
result = result * 59 + (($te_type == null) ? 43 : $te_type.hashCode());
|
final Object $te_desc = this.getTe_desc();
|
result = result * 59 + (($te_desc == null) ? 43 : $te_desc.hashCode());
|
final Object $te_fname = this.getTe_fname();
|
result = result * 59 + (($te_fname == null) ? 43 : $te_fname.hashCode());
|
final long $te_yaw = Double.doubleToLongBits(this.getTe_yaw());
|
result = result * 59 + (int)($te_yaw >>> 32 ^ $te_yaw);
|
final long $te_pitch = Double.doubleToLongBits(this.getTe_pitch());
|
result = result * 59 + (int)($te_pitch >>> 32 ^ $te_pitch);
|
final long $te_scale = Double.doubleToLongBits(this.getTe_scale());
|
result = result * 59 + (int)($te_scale >>> 32 ^ $te_scale);
|
final long $te_roll = Double.doubleToLongBits(this.getTe_roll());
|
result = result * 59 + (int)($te_roll >>> 32 ^ $te_roll);
|
final long $te_width = Double.doubleToLongBits(this.getTe_width());
|
result = result * 59 + (int)($te_width >>> 32 ^ $te_width);
|
final long $te_height = Double.doubleToLongBits(this.getTe_height());
|
result = result * 59 + (int)($te_height >>> 32 ^ $te_height);
|
final long $te_length = Double.doubleToLongBits(this.getTe_length());
|
result = result * 59 + (int)($te_length >>> 32 ^ $te_length);
|
final Object $gemo = this.getGemo();
|
result = result * 59 + (($gemo == null) ? 43 : $gemo.hashCode());
|
final Object $regionPath = this.getRegionPath();
|
result = result * 59 + (($regionPath == null) ? 43 : $regionPath.hashCode());
|
final Object $transPtz = this.getTransPtz();
|
result = result * 59 + (($transPtz == null) ? 43 : $transPtz.hashCode());
|
final Object $cameraName = this.getCameraName();
|
result = result * 59 + (($cameraName == null) ? 43 : $cameraName.hashCode());
|
final Object $cameraIndex = this.getCameraIndex();
|
result = result * 59 + (($cameraIndex == null) ? 43 : $cameraIndex.hashCode());
|
final Object $status = this.getStatus();
|
result = result * 59 + (($status == null) ? 43 : $status.hashCode());
|
return result;
|
}
|
|
@Override
|
public String toString() {
|
return "Monitor(gid=" + this.getGid() + ", te_type=" + this.getTe_type() + ", te_desc=" + this.getTe_desc() + ", te_fname=" + this.getTe_fname() + ", te_yaw=" + this.getTe_yaw() + ", te_pitch=" + this.getTe_pitch() + ", te_scale=" + this.getTe_scale() + ", te_roll=" + this.getTe_roll() + ", te_width=" + this.getTe_width() + ", te_height=" + this.getTe_height() + ", te_length=" + this.getTe_length() + ", gemo=" + this.getGemo() + ", regionPath=" + this.getRegionPath() + ", transPtz=" + this.getTransPtz() + ", cameraName=" + this.getCameraName() + ", cameraIndex=" + this.getCameraIndex() + ", status=" + this.getStatus() + ")";
|
}
|
}
|