package com.nq.vo.foreigncurrency;
|
|
public class ExchangeVO {
|
private String hourTime;
|
private String extra1;
|
private String extra2;
|
private String lastClose;
|
private String bofu;
|
|
public void setHourTime(String hourTime) {
|
this.hourTime = hourTime;
|
}
|
|
private String todayOpen;
|
private String maxPrice;
|
private String minPrice;
|
private String nowPrice;
|
private String name;
|
|
public void setExtra1(String extra1) {
|
this.extra1 = extra1;
|
}
|
|
public void setExtra2(String extra2) {
|
this.extra2 = extra2;
|
}
|
|
public void setLastClose(String lastClose) {
|
this.lastClose = lastClose;
|
}
|
|
public void setBofu(String bofu) {
|
this.bofu = bofu;
|
}
|
|
public void setTodayOpen(String todayOpen) {
|
this.todayOpen = todayOpen;
|
}
|
|
public void setMaxPrice(String maxPrice) {
|
this.maxPrice = maxPrice;
|
}
|
|
public void setMinPrice(String minPrice) {
|
this.minPrice = minPrice;
|
}
|
|
public void setNowPrice(String nowPrice) {
|
this.nowPrice = nowPrice;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public boolean equals(Object o) {
|
if (o == this) return true;
|
if (!(o instanceof ExchangeVO)) return false;
|
ExchangeVO other = (ExchangeVO) o;
|
if (!other.canEqual(this)) return false;
|
Object this$hourTime = getHourTime(), other$hourTime = other.getHourTime();
|
if ((this$hourTime == null) ? (other$hourTime != null) : !this$hourTime.equals(other$hourTime)) return false;
|
Object this$extra1 = getExtra1(), other$extra1 = other.getExtra1();
|
if ((this$extra1 == null) ? (other$extra1 != null) : !this$extra1.equals(other$extra1)) return false;
|
Object this$extra2 = getExtra2(), other$extra2 = other.getExtra2();
|
if ((this$extra2 == null) ? (other$extra2 != null) : !this$extra2.equals(other$extra2)) return false;
|
Object this$lastClose = getLastClose(), other$lastClose = other.getLastClose();
|
if ((this$lastClose == null) ? (other$lastClose != null) : !this$lastClose.equals(other$lastClose))
|
return false;
|
Object this$bofu = getBofu(), other$bofu = other.getBofu();
|
if ((this$bofu == null) ? (other$bofu != null) : !this$bofu.equals(other$bofu)) return false;
|
Object this$todayOpen = getTodayOpen(), other$todayOpen = other.getTodayOpen();
|
if ((this$todayOpen == null) ? (other$todayOpen != null) : !this$todayOpen.equals(other$todayOpen))
|
return false;
|
Object this$maxPrice = getMaxPrice(), other$maxPrice = other.getMaxPrice();
|
if ((this$maxPrice == null) ? (other$maxPrice != null) : !this$maxPrice.equals(other$maxPrice)) return false;
|
Object this$minPrice = getMinPrice(), other$minPrice = other.getMinPrice();
|
if ((this$minPrice == null) ? (other$minPrice != null) : !this$minPrice.equals(other$minPrice)) return false;
|
Object this$nowPrice = getNowPrice(), other$nowPrice = other.getNowPrice();
|
if ((this$nowPrice == null) ? (other$nowPrice != null) : !this$nowPrice.equals(other$nowPrice)) return false;
|
Object this$name = getName(), other$name = other.getName();
|
return !((this$name == null) ? (other$name != null) : !this$name.equals(other$name));
|
}
|
|
protected boolean canEqual(Object other) {
|
return other instanceof ExchangeVO;
|
}
|
|
public int hashCode() {
|
int PRIME = 59;
|
int result = 1;
|
Object $hourTime = getHourTime();
|
result = result * 59 + (($hourTime == null) ? 43 : $hourTime.hashCode());
|
Object $extra1 = getExtra1();
|
result = result * 59 + (($extra1 == null) ? 43 : $extra1.hashCode());
|
Object $extra2 = getExtra2();
|
result = result * 59 + (($extra2 == null) ? 43 : $extra2.hashCode());
|
Object $lastClose = getLastClose();
|
result = result * 59 + (($lastClose == null) ? 43 : $lastClose.hashCode());
|
Object $bofu = getBofu();
|
result = result * 59 + (($bofu == null) ? 43 : $bofu.hashCode());
|
Object $todayOpen = getTodayOpen();
|
result = result * 59 + (($todayOpen == null) ? 43 : $todayOpen.hashCode());
|
Object $maxPrice = getMaxPrice();
|
result = result * 59 + (($maxPrice == null) ? 43 : $maxPrice.hashCode());
|
Object $minPrice = getMinPrice();
|
result = result * 59 + (($minPrice == null) ? 43 : $minPrice.hashCode());
|
Object $nowPrice = getNowPrice();
|
result = result * 59 + (($nowPrice == null) ? 43 : $nowPrice.hashCode());
|
Object $name = getName();
|
return result * 59 + (($name == null) ? 43 : $name.hashCode());
|
}
|
|
public String toString() {
|
return "ExchangeVO(hourTime=" + getHourTime() + ", extra1=" + getExtra1() + ", extra2=" + getExtra2() + ", lastClose=" + getLastClose() + ", bofu=" + getBofu() + ", todayOpen=" + getTodayOpen() + ", maxPrice=" + getMaxPrice() + ", minPrice=" + getMinPrice() + ", nowPrice=" + getNowPrice() + ", name=" + getName() + ")";
|
}
|
|
|
public String getHourTime() {
|
return this.hourTime;
|
}
|
|
public String getExtra1() {
|
return this.extra1;
|
}
|
|
public String getExtra2() {
|
return this.extra2;
|
}
|
|
public String getLastClose() {
|
return this.lastClose;
|
}
|
|
public String getBofu() {
|
return this.bofu;
|
}
|
|
public String getTodayOpen() {
|
return this.todayOpen;
|
}
|
|
public String getMaxPrice() {
|
return this.maxPrice;
|
}
|
|
public String getMinPrice() {
|
return this.minPrice;
|
}
|
|
public String getNowPrice() {
|
return this.nowPrice;
|
}
|
|
public String getName() {
|
return this.name;
|
}
|
}
|