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