📄 secret.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -