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