📄 document.java
字号:
package com.bjsxt.jbpm;
public class Document {
private int id;
private String title;
private String content;
private String creator;
private Long processIntanceId;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getCreator() {
return creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Long getProcessIntanceId() {
return processIntanceId;
}
public void setProcessIntanceId(Long processIntanceId) {
this.processIntanceId = processIntanceId;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -