acceptstatus.java
来自「实现了基本的oa功能:个人日志。。。」· Java 代码 · 共 55 行
JAVA
55 行
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 + =
减小字号Ctrl + -
显示快捷键?