📄 basestudent.java
字号:
package com.softeem.hibernate.pojo.base;
import java.io.Serializable;
/**
* This is an object that contains data related to the student table.
* Do not modify this class because it will be overwritten if the configuration file
* related to this class is modified.
*
* @hibernate.class
* table="student"
*/
public abstract class BaseStudent implements Serializable {
public static String REF = "Student";
public static String PROP_NAME = "name";
public static String PROP_AGE = "age";
public static String PROP_ID = "id";
// constructors
public BaseStudent () {
initialize();
}
/**
* Constructor for primary key
*/
public BaseStudent (java.lang.Integer id) {
this.setId(id);
initialize();
}
protected void initialize () {}
private int hashCode = Integer.MIN_VALUE;
// primary key
private java.lang.Integer id;
// fields
private java.lang.String name;
private java.lang.Integer age;
/**
* Return the unique identifier of this class
* @hibernate.id
* generator-class="identity"
* column="id"
*/
public java.lang.Integer getId () {
return id;
}
/**
* Set the unique identifier of this class
* @param id the new ID
*/
public void setId (java.lang.Integer id) {
this.id = id;
this.hashCode = Integer.MIN_VALUE;
}
/**
* Return the value associated with the column: name
*/
public java.lang.String getName () {
return name;
}
/**
* Set the value related to the column: name
* @param name the name value
*/
public void setName (java.lang.String name) {
this.name = name;
}
/**
* Return the value associated with the column: age
*/
public java.lang.Integer getAge () {
return age;
}
/**
* Set the value related to the column: age
* @param age the age value
*/
public void setAge (java.lang.Integer age) {
this.age = age;
}
public boolean equals (Object obj) {
if (null == obj) return false;
if (!(obj instanceof com.softeem.hibernate.pojo.Student)) return false;
else {
com.softeem.hibernate.pojo.Student student = (com.softeem.hibernate.pojo.Student) obj;
if (null == this.getId() || null == student.getId()) return false;
else return (this.getId().equals(student.getId()));
}
}
public int hashCode () {
if (Integer.MIN_VALUE == this.hashCode) {
if (null == this.getId()) return super.hashCode();
else {
String hashStr = this.getClass().getName() + ":" + this.getId().hashCode();
this.hashCode = hashStr.hashCode();
}
}
return this.hashCode;
}
public String toString () {
return super.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -