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