📄 syswordbook.java
字号:
package com.chinahr.pojo;
import java.util.HashSet;
import java.util.Set;
/**
* SysWordBook generated by MyEclipse Persistence Tools
*/
public class SysWordBook implements java.io.Serializable {
// Fields
private Integer wordId;
private String siteName;
private String wordName;
private String wordValue;
private Set userIndsForMarriage = new HashSet(0);
private Set userIndsForFolk = new HashSet(0);
// Constructors
/** default constructor */
public SysWordBook() {
}
/** minimal constructor */
public SysWordBook(String siteName, String wordName, String wordValue) {
this.siteName = siteName;
this.wordName = wordName;
this.wordValue = wordValue;
}
/** full constructor */
public SysWordBook(String siteName, String wordName, String wordValue,
Set userIndsForMarriage, Set userIndsForFolk) {
this.siteName = siteName;
this.wordName = wordName;
this.wordValue = wordValue;
this.userIndsForMarriage = userIndsForMarriage;
this.userIndsForFolk = userIndsForFolk;
}
// Property accessors
public Integer getWordId() {
return this.wordId;
}
public void setWordId(Integer wordId) {
this.wordId = wordId;
}
public String getSiteName() {
return this.siteName;
}
public void setSiteName(String siteName) {
this.siteName = siteName;
}
public String getWordName() {
return this.wordName;
}
public void setWordName(String wordName) {
this.wordName = wordName;
}
public String getWordValue() {
return this.wordValue;
}
public void setWordValue(String wordValue) {
this.wordValue = wordValue;
}
public Set getUserIndsForMarriage() {
return this.userIndsForMarriage;
}
public void setUserIndsForMarriage(Set userIndsForMarriage) {
this.userIndsForMarriage = userIndsForMarriage;
}
public Set getUserIndsForFolk() {
return this.userIndsForFolk;
}
public void setUserIndsForFolk(Set userIndsForFolk) {
this.userIndsForFolk = userIndsForFolk;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -