📄 broadcastid.java
字号:
package org.mychange.obj;
/**
* BroadcastId generated by MyEclipse Persistence Tools
*/
public class BroadcastId implements java.io.Serializable {
// Fields
private Integer id;
private Integer rfcId;
// Constructors
/** default constructor */
public BroadcastId() {
}
/** full constructor */
public BroadcastId(Integer id, Integer rfcId) {
this.id = id;
this.rfcId = rfcId;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getRfcId() {
return this.rfcId;
}
public void setRfcId(Integer rfcId) {
this.rfcId = rfcId;
}
public boolean equals(Object other) {
if ((this == other))
return true;
if ((other == null))
return false;
if (!(other instanceof BroadcastId))
return false;
BroadcastId castOther = (BroadcastId) other;
return ((this.getId() == castOther.getId()) || (this.getId() != null
&& castOther.getId() != null && this.getId().equals(
castOther.getId())))
&& ((this.getRfcId() == castOther.getRfcId()) || (this
.getRfcId() != null
&& castOther.getRfcId() != null && this.getRfcId()
.equals(castOther.getRfcId())));
}
public int hashCode() {
int result = 17;
result = 37 * result + (getId() == null ? 0 : this.getId().hashCode());
result = 37 * result
+ (getRfcId() == null ? 0 : this.getRfcId().hashCode());
return result;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -