📄 syfxb3zzsybnsrid.java
字号:
package com.syfxapp.pojo;
/**
* SyfxB3ZzsYbnsrId entity. @author MyEclipse Persistence Tools
*/
public class SyfxB3ZzsYbnsrId implements java.io.Serializable {
// Fields
private String nsrsbh;
private String hyDm;
private String ny;
// Constructors
/** default constructor */
public SyfxB3ZzsYbnsrId() {
}
/** full constructor */
public SyfxB3ZzsYbnsrId(String nsrsbh, String hyDm, String ny) {
this.nsrsbh = nsrsbh;
this.hyDm = hyDm;
this.ny = ny;
}
// Property accessors
public String getNsrsbh() {
return this.nsrsbh;
}
public void setNsrsbh(String nsrsbh) {
this.nsrsbh = nsrsbh;
}
public String getHyDm() {
return this.hyDm;
}
public void setHyDm(String hyDm) {
this.hyDm = hyDm;
}
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 SyfxB3ZzsYbnsrId))
return false;
SyfxB3ZzsYbnsrId castOther = (SyfxB3ZzsYbnsrId) other;
return ((this.getNsrsbh() == castOther.getNsrsbh()) || (this
.getNsrsbh() != null
&& castOther.getNsrsbh() != null && this.getNsrsbh().equals(
castOther.getNsrsbh())))
&& ((this.getHyDm() == castOther.getHyDm()) || (this.getHyDm() != null
&& castOther.getHyDm() != null && this.getHyDm()
.equals(castOther.getHyDm())))
&& ((this.getNy() == castOther.getNy()) || (this.getNy() != null
&& castOther.getNy() != null && this.getNy().equals(
castOther.getNy())));
}
public int hashCode() {
int result = 17;
result = 37 * result
+ (getNsrsbh() == null ? 0 : this.getNsrsbh().hashCode());
result = 37 * result
+ (getHyDm() == null ? 0 : this.getHyDm().hashCode());
result = 37 * result + (getNy() == null ? 0 : this.getNy().hashCode());
return result;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -