syswordbook.java
来自「仿招聘网站 SSH框架 ajax功能」· Java 代码 · 共 99 行
JAVA
99 行
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 + =
减小字号Ctrl + -
显示快捷键?