📄 resobjectre.java
字号:
package com.hongsoft.res.pojo;
import java.io.Serializable;
public class ResObjectRe implements Serializable {
private static final long serialVersionUID = -2877361840859370492L;
private long parent_id;
private long child_id;
public ResObjectRe() {
}
public boolean equals(Object other) {
if (other == null || !(other instanceof ResObjectRe))
return false;
return (this.parent_id == ((ResObjectRe) other).parent_id) && (this.child_id == ((ResObjectRe) other).child_id);
}
public void setParent_id(long parent_id) {
this.parent_id = parent_id;
}
public long getParent_id() {
return parent_id;
}
public void setChild_id(long child_id) {
this.child_id = child_id;
}
public long getChild_id() {
return child_id;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -