📄 acceptstatus.java
字号:
package oa.dailywork.model.po;
import java.util.HashSet;
import java.util.Set;
/**
* AcceptStatus generated by MyEclipse Persistence Tools
*/
public class AcceptStatus implements java.io.Serializable {
// Fields
private Long statusId;
private String name;
private AcceptFile acceptfile;
public AcceptStatus() {
}
/** full constructor */
public AcceptStatus(String name) {
this.name = name;
}
// Property accessors
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public AcceptFile getAcceptfile() {
return acceptfile;
}
public void setAcceptfile(AcceptFile acceptfile) {
this.acceptfile = acceptfile;
}
public Long getStatusId() {
return statusId;
}
public void setStatusId(Long statusId) {
this.statusId = statusId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -