?? user.java
字號(hào):
package hibernate;
import java.util.*;
/**
* User generated by hbm2java
*/
public class User implements java.io.Serializable {
// Fields
private Long id;
private String username;
private String password;
// Constructors
/** default constructor */
public User() {
}
/** constructor with id */
public User(Long id) {
this.id = id;
}
// Property accessors
/**
*
*/
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
/**
*
*/
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
}
/**
*
*/
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -