📄 chiefreportscopeid.java
字号:
package com.je.ims.hibernate;
/**
* ChiefReportScopeId generated by MyEclipse - Hibernate Tools
*/
public class ChiefReportScopeId implements java.io.Serializable {
// Fields
private Long chiefReportScopeId;
private String orgId;
private String orgName;
// Constructors
/** default constructor */
public ChiefReportScopeId() {
}
// Property accessors
public Long getChiefReportScopeId() {
return this.chiefReportScopeId;
}
public void setChiefReportScopeId(Long chiefReportScopeId) {
this.chiefReportScopeId = chiefReportScopeId;
}
public String getOrgId() {
return this.orgId;
}
public void setOrgId(String orgId) {
this.orgId = orgId;
}
public String getOrgName() {
return this.orgName;
}
public void setOrgName(String orgName) {
this.orgName = orgName;
}
public boolean equals(Object other) {
if ( (this == other ) ) return true;
if ( (other == null ) ) return false;
if ( !(other instanceof ChiefReportScopeId) ) return false;
ChiefReportScopeId castOther = ( ChiefReportScopeId ) other;
return ( (this.getChiefReportScopeId()==castOther.getChiefReportScopeId()) || ( this.getChiefReportScopeId()!=null && castOther.getChiefReportScopeId()!=null && this.getChiefReportScopeId().equals(castOther.getChiefReportScopeId()) ) )
&& ( (this.getOrgId()==castOther.getOrgId()) || ( this.getOrgId()!=null && castOther.getOrgId()!=null && this.getOrgId().equals(castOther.getOrgId()) ) )
&& ( (this.getOrgName()==castOther.getOrgName()) || ( this.getOrgName()!=null && castOther.getOrgName()!=null && this.getOrgName().equals(castOther.getOrgName()) ) );
}
public int hashCode() {
int result = 17;
result = 37 * result + ( getChiefReportScopeId() == null ? 0 : this.getChiefReportScopeId().hashCode() );
result = 37 * result + ( getOrgId() == null ? 0 : this.getOrgId().hashCode() );
result = 37 * result + ( getOrgName() == null ? 0 : this.getOrgName().hashCode() );
return result;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -