secret.java
来自「实现了基本的oa功能:个人日志。。。」· Java 代码 · 共 57 行
JAVA
57 行
package oa.dailywork.model.po;
import java.util.HashSet;
import java.util.Set;
/**
* Secret generated by MyEclipse Persistence Tools
*/
public class Secret implements java.io.Serializable {
// Fields
private Long secretId;
private String name;
private Set acceptfile =new HashSet();
// Constructors
/** default constructor */
public Secret() {
}
/** full constructor */
public Secret(String name) {
this.name = name;
}
// Property accessors
public Long getSecretId() {
return this.secretId;
}
public void setSecretId(Long secretId) {
this.secretId = secretId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Set getAcceptfile() {
return acceptfile;
}
public void setAcceptfile(Set acceptfile) {
this.acceptfile = acceptfile;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?