📄 syfxtjxmid.java
字号:
package com.syfxapp.pojo;
/**
* SyfxTjxmId entity. @author MyEclipse Persistence Tools
*/
public class SyfxTjxmId implements java.io.Serializable {
// Fields
private String tjxm;
private Long nsrdzdah;
private String zsxmDm;
private String hyDm;
private Double se;
private String ny;
private String swjgDm;
// Constructors
/** default constructor */
public SyfxTjxmId() {
}
/** full constructor */
public SyfxTjxmId(String tjxm, Long nsrdzdah, String zsxmDm, String hyDm,
Double se, String ny, String swjgDm) {
this.tjxm = tjxm;
this.nsrdzdah = nsrdzdah;
this.zsxmDm = zsxmDm;
this.hyDm = hyDm;
this.se = se;
this.ny = ny;
this.swjgDm = swjgDm;
}
// Property accessors
public String getTjxm() {
return this.tjxm;
}
public void setTjxm(String tjxm) {
this.tjxm = tjxm;
}
public Long getNsrdzdah() {
return this.nsrdzdah;
}
public void setNsrdzdah(Long nsrdzdah) {
this.nsrdzdah = nsrdzdah;
}
public String getZsxmDm() {
return this.zsxmDm;
}
public void setZsxmDm(String zsxmDm) {
this.zsxmDm = zsxmDm;
}
public String getHyDm() {
return this.hyDm;
}
public void setHyDm(String hyDm) {
this.hyDm = hyDm;
}
public Double getSe() {
return this.se;
}
public void setSe(Double se) {
this.se = se;
}
public String getNy() {
return this.ny;
}
public void setNy(String ny) {
this.ny = ny;
}
public String getSwjgDm() {
return this.swjgDm;
}
public void setSwjgDm(String swjgDm) {
this.swjgDm = swjgDm;
}
public boolean equals(Object other) {
if ((this == other))
return true;
if ((other == null))
return false;
if (!(other instanceof SyfxTjxmId))
return false;
SyfxTjxmId castOther = (SyfxTjxmId) other;
return ((this.getTjxm() == castOther.getTjxm()) || (this.getTjxm() != null
&& castOther.getTjxm() != null && this.getTjxm().equals(
castOther.getTjxm())))
&& ((this.getNsrdzdah() == castOther.getNsrdzdah()) || (this
.getNsrdzdah() != null
&& castOther.getNsrdzdah() != null && this
.getNsrdzdah().equals(castOther.getNsrdzdah())))
&& ((this.getZsxmDm() == castOther.getZsxmDm()) || (this
.getZsxmDm() != null
&& castOther.getZsxmDm() != null && this.getZsxmDm()
.equals(castOther.getZsxmDm())))
&& ((this.getHyDm() == castOther.getHyDm()) || (this.getHyDm() != null
&& castOther.getHyDm() != null && this.getHyDm()
.equals(castOther.getHyDm())))
&& ((this.getSe() == castOther.getSe()) || (this.getSe() != null
&& castOther.getSe() != null && this.getSe().equals(
castOther.getSe())))
&& ((this.getNy() == castOther.getNy()) || (this.getNy() != null
&& castOther.getNy() != null && this.getNy().equals(
castOther.getNy())))
&& ((this.getSwjgDm() == castOther.getSwjgDm()) || (this
.getSwjgDm() != null
&& castOther.getSwjgDm() != null && this.getSwjgDm()
.equals(castOther.getSwjgDm())));
}
public int hashCode() {
int result = 17;
result = 37 * result
+ (getTjxm() == null ? 0 : this.getTjxm().hashCode());
result = 37 * result
+ (getNsrdzdah() == null ? 0 : this.getNsrdzdah().hashCode());
result = 37 * result
+ (getZsxmDm() == null ? 0 : this.getZsxmDm().hashCode());
result = 37 * result
+ (getHyDm() == null ? 0 : this.getHyDm().hashCode());
result = 37 * result + (getSe() == null ? 0 : this.getSe().hashCode());
result = 37 * result + (getNy() == null ? 0 : this.getNy().hashCode());
result = 37 * result
+ (getSwjgDm() == null ? 0 : this.getSwjgDm().hashCode());
return result;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -