📄 interviewlinkstudent.java
字号:
package com.isoftstone.isscrmweb.web.mapping;
/**
* Interviewlinkstudent generated by MyEclipse - Hibernate Tools
*/
public class Interviewlinkstudent extends org.pontifex.web.mapping.PageInfo implements java.io.Serializable {
// Fields
private Studentinfo studentinfo;
private Interrecord interrecord;
private String result;
// Property accessors
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
public Studentinfo getStudentinfo() {
return this.studentinfo;
}
public void setStudentinfo(Studentinfo studentinfo) {
this.studentinfo = studentinfo;
}
public Interrecord getInterrecord() {
return this.interrecord;
}
public void setInterrecord(Interrecord interrecord) {
this.interrecord = interrecord;
}
public boolean equals(Object other) {
if ( (this == other ) ) return true;
if ( (other == null ) ) return false;
if ( !(other instanceof Interviewlinkstudent) ) return false;
Interviewlinkstudent castOther = ( Interviewlinkstudent ) other;
return ( (this.getStudentinfo()==castOther.getStudentinfo()) || ( this.getStudentinfo()!=null && castOther.getStudentinfo()!=null && this.getStudentinfo().equals(castOther.getStudentinfo()) ) )
&& ( (this.getInterrecord()==castOther.getInterrecord()) || ( this.getInterrecord()!=null && castOther.getInterrecord()!=null && this.getInterrecord().equals(castOther.getInterrecord()) ) );
}
public int hashCode() {
int result = 17;
result = 37 * result + ( getStudentinfo() == null ? 0 : this.getStudentinfo().hashCode() );
result = 37 * result + ( getInterrecord() == null ? 0 : this.getInterrecord().hashCode() );
return result;
}
// Constructors
/** default constructor */
public Interviewlinkstudent() {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -