📄 users.java
字号:
package org.mychange.obj;
import java.util.HashSet;
import java.util.Set;
/**
* Users generated by MyEclipse Persistence Tools
*/
public class Users implements java.io.Serializable {
// Fields
private Integer id;
private String userName;
private String passwords;
private String position;
private String tel;
private String email;
private Set rfcs = new HashSet(0);
// Constructors
/** default constructor */
public Users() {
}
public Users(int id){
this.id=id;
}
/** minimal constructor */
public Users(String userName, String passwords) {
this.userName = userName;
this.passwords = passwords;
}
/** full constructor */
public Users(String userName, String passwords, String position,
String tel, String email, Set rfcs) {
this.userName = userName;
this.passwords = passwords;
this.position = position;
this.tel = tel;
this.email = email;
this.rfcs = rfcs;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPasswords() {
return this.passwords;
}
public void setPasswords(String passwords) {
this.passwords = passwords;
}
public String getPosition() {
return this.position;
}
public void setPosition(String position) {
this.position = position;
}
public String getTel() {
return this.tel;
}
public void setTel(String tel) {
this.tel = tel;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public Set getRfcs() {
return this.rfcs;
}
public void setRfcs(Set rfcs) {
this.rfcs = rfcs;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -