📄 popedom.java
字号:
package com.yondor.oa.db.popedom.dao;
import java.util.HashSet;
import java.util.Set;
/**
* Popedom generated by MyEclipse - Hibernate Tools
*/
public class Popedom implements java.io.Serializable {
// Fields
private Long popedomid;
private Long parentid;
private String identifier;
private String name;
private String description;
private Set operators = new HashSet(0);
// Constructors
/** default constructor */
public Popedom() {
}
/** full constructor */
public Popedom(Long parentid, String identifier, String name, String description, Set operators) {
this.parentid = parentid;
this.identifier = identifier;
this.name = name;
this.description = description;
this.operators = operators;
}
// Property accessors
public Long getPopedomid() {
return this.popedomid;
}
public void setPopedomid(Long popedomid) {
this.popedomid = popedomid;
}
public Long getParentid() {
return this.parentid;
}
public void setParentid(Long parentid) {
this.parentid = parentid;
}
public String getIdentifier() {
return this.identifier;
}
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Set getOperators() {
return this.operators;
}
public void setOperators(Set operators) {
this.operators = operators;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -