sexinfo.java
来自「对入学者很实用用JAVA的基本语言写的」· Java 代码 · 共 65 行
JAVA
65 行
package lxl;
import java.util.HashSet;
import java.util.Set;
/**
* SexInfo generated by MyEclipse Persistence Tools
*/
public class SexInfo implements java.io.Serializable {
// Fields
private String sexId;
private String sexValue;
private Set userInfos = new HashSet(0);
// Constructors
/** default constructor */
public SexInfo() {
}
/** minimal constructor */
public SexInfo(String sexId, String sexValue) {
this.sexId = sexId;
this.sexValue = sexValue;
}
/** full constructor */
public SexInfo(String sexId, String sexValue, Set userInfos) {
this.sexId = sexId;
this.sexValue = sexValue;
this.userInfos = userInfos;
}
// Property accessors
public String getSexId() {
return this.sexId;
}
public void setSexId(String sexId) {
this.sexId = sexId;
}
public String getSexValue() {
return this.sexValue;
}
public void setSexValue(String sexValue) {
this.sexValue = sexValue;
}
public Set getUserInfos() {
return this.userInfos;
}
public void setUserInfos(Set userInfos) {
this.userInfos = userInfos;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?