📄 baseuser.java
字号:
package com.jspdev.hibdemo.base;
import java.lang.Comparable;
import java.io.Serializable;
/**
* This is an object that contains data related to the sys_user table.
* Do not modify this class because it will be overwritten if the configuration file
* related to this class is modified.
*
* @hibernate.class
* table="sys_user"
*/
public abstract class BaseUser implements Comparable, Serializable {
public static String REF = "User";
public static String PROP_NAME = "Name";
public static String PROP_STATUS = "Status";
public static String PROP_SCREEN_NAME = "ScreenName";
public static String PROP_EMAIL = "Email";
public static String PROP_ADDRESS = "Address";
public static String PROP_PASSWORD = "Password";
public static String PROP_ID = "Id";
// constructors
public BaseUser () {
initialize();
}
/**
* Constructor for primary key
*/
public BaseUser (java.lang.Long id) {
this.setId(id);
initialize();
}
/**
* Constructor for required fields
*/
public BaseUser (
java.lang.Long id,
java.lang.String email,
java.lang.String name,
java.lang.String password) {
this.setId(id);
this.setEmail(email);
this.setName(name);
this.setPassword(password);
initialize();
}
protected void initialize () {}
private int hashCode = Integer.MIN_VALUE;
// primary key
private java.lang.Long id;
// fields
private java.lang.String email;
private java.lang.String name;
private java.lang.String password;
private java.lang.String screenName;
private java.lang.Short status;
private java.lang.String address;
/**
* Return the unique identifier of this class
* @hibernate.id
* generator-class="native"
* column="id"
*/
public java.lang.Long getId () {
return id;
}
/**
* Set the unique identifier of this class
* @param id the new ID
*/
public void setId (java.lang.Long id) {
this.id = id;
this.hashCode = Integer.MIN_VALUE;
}
/**
* Return the value associated with the column: email
*/
public java.lang.String getEmail () {
return email;
}
/**
* Set the value related to the column: email
* @param email the email value
*/
public void setEmail (java.lang.String email) {
this.email = email;
}
/**
* 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: password
*/
public java.lang.String getPassword () {
return password;
}
/**
* Set the value related to the column: password
* @param password the password value
*/
public void setPassword (java.lang.String password) {
this.password = password;
}
/**
* Return the value associated with the column: screen_name
*/
public java.lang.String getScreenName () {
return screenName;
}
/**
* Set the value related to the column: screen_name
* @param screenName the screen_name value
*/
public void setScreenName (java.lang.String screenName) {
this.screenName = screenName;
}
/**
* Return the value associated with the column: status
*/
public java.lang.Short getStatus () {
return status;
}
/**
* Set the value related to the column: status
* @param status the status value
*/
public void setStatus (java.lang.Short status) {
this.status = status;
}
/**
* Return the value associated with the column: address
*/
public java.lang.String getAddress () {
return address;
}
/**
* Set the value related to the column: address
* @param address the address value
*/
public void setAddress (java.lang.String address) {
this.address = address;
}
public boolean equals (Object obj) {
if (null == obj) return false;
if (!(obj instanceof com.jspdev.hibdemo.User)) return false;
else {
com.jspdev.hibdemo.User user = (com.jspdev.hibdemo.User) obj;
if (null == this.getId() || null == user.getId()) return false;
else return (this.getId().equals(user.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 int compareTo (Object obj) {
if (obj.hashCode() > hashCode()) return 1;
else if (obj.hashCode() < hashCode()) return -1;
else return 0;
}
public String toString () {
return super.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -