📄 workflow_lineitem.java
字号:
package com.vere.manager.workflow.item; import java.io.*; public class Workflow_lineItem implements Serializable { private String id;// private String workflow_id;//流程编号 private String sendstateid;//发送状态编号 private String receiveid;//接收状态编号 private Workflow_stateItem sendState; private Workflow_stateItem receiveState; private String name; public Workflow_lineItem() { } /** * @see */ public String getId() { if(this.id==null) this.id=""; return this.id; } /** * @see */ public void setId(String id) { this.id=id; } /** * @see 流程编号 */ public String getWorkflow_id() { if(this.workflow_id==null) this.workflow_id=""; return this.workflow_id; } /** * @see 流程编号 */ public void setWorkflow_id(String workflow_id) { this.workflow_id=workflow_id; } /** * @see 发送状态编号 */ public String getSendstateid() { if(this.sendstateid==null) this.sendstateid=""; return this.sendstateid; } /** * @see 发送状态编号 */ public void setSendstateid(String sendstateid) { this.sendstateid=sendstateid; } /** * @see 接收状态编号 */ public String getReceiveid() { if(this.receiveid==null) this.receiveid=""; return this.receiveid; } /** * @see 接收状态编号 */ public void setReceiveid(String receiveid) { this.receiveid=receiveid; } public Workflow_stateItem getSendState() { return this.sendState; } public void setSendState(Workflow_stateItem sendState) { this.sendState=sendState; } public Workflow_stateItem getReceiveState() { return this.receiveState; } public void setReceiveState(Workflow_stateItem receiveState) { this.receiveState=receiveState; } /** * @see 名称 */ public String getName() { if(this.name==null) this.name=""; return this.name; } /** * @see 名称 */ public void setName(String name) { this.name=name; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -