📄 workflowitem.java
字号:
package com.vere.manager.workflow.item; import java.io.*; public class WorkflowItem implements Serializable { private String id;// private String name;//流程名称 private String workflow_category_id;//流程类别 private String workflow_category_nodepath;//流程类别上级路径 private String is_user;//是否启用 private String workflow_type;//流程种类 private String edit_user;//允许修改用户 private String edit_name;//允许修改人员 private String applicable_user;//适用用户 private String applicable_name;//适用人员 private String modify_user;//修改用户 private String modify_name;//修改人 private String modify_time;//修改时间 private String introduction;//详细说明 private String temple_file;//表单文件 private Workflow_categoryItem workflow_categoryItem; public WorkflowItem() { } /** * @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 getName() { if(this.name==null) this.name=""; return this.name; } /** * @see 流程名称 */ public void setName(String name) { this.name=name; } /** * @see 流程类别 */ public String getWorkflow_category_id() { if(this.workflow_category_id==null) this.workflow_category_id=""; return this.workflow_category_id; } /** * @see 流程类别 */ public void setWorkflow_category_id(String workflow_category_id) { this.workflow_category_id=workflow_category_id; } /** * @see 流程类别上级路径 */ public String getWorkflow_category_nodepath() { if(this.workflow_category_nodepath==null) this.workflow_category_nodepath=""; return this.workflow_category_nodepath; } /** * @see 流程类别上级路径 */ public void setWorkflow_category_nodepath(String workflow_category_nodepath) { this.workflow_category_nodepath=workflow_category_nodepath; } /** * @see 是否启用 */ public String getIs_user() { if(this.is_user==null) this.is_user=""; return this.is_user; } /** * @see 是否启用 */ public void setIs_user(String is_user) { this.is_user=is_user; } /** * @see 流程种类 */ public String getWorkflow_type() { if(this.workflow_type==null) this.workflow_type=""; return this.workflow_type; } /** * @see 流程种类 */ public void setWorkflow_type(String workflow_type) { this.workflow_type=workflow_type; } /** * @see 允许修改用户 */ public String getEdit_user() { if(this.edit_user==null) this.edit_user=""; return this.edit_user; } /** * @see 允许修改用户 */ public void setEdit_user(String edit_user) { this.edit_user=edit_user; } /** * @see 允许修改人员 */ public String getEdit_name() { if(this.edit_name==null) this.edit_name=""; return this.edit_name; } /** * @see 允许修改人员 */ public void setEdit_name(String edit_name) { this.edit_name=edit_name; } /** * @see 适用用户 */ public String getApplicable_user() { if(this.applicable_user==null) this.applicable_user=""; return this.applicable_user; } /** * @see 适用用户 */ public void setApplicable_user(String applicable_user) { this.applicable_user=applicable_user; } /** * @see 适用人员 */ public String getApplicable_name() { if(this.applicable_name==null) this.applicable_name=""; return this.applicable_name; } /** * @see 适用人员 */ public void setApplicable_name(String applicable_name) { this.applicable_name=applicable_name; } /** * @see 修改用户 */ public String getModify_user() { if(this.modify_user==null) this.modify_user=""; return this.modify_user; } /** * @see 修改用户 */ public void setModify_user(String modify_user) { this.modify_user=modify_user; } /** * @see 修改人 */ public String getModify_name() { if(this.modify_name==null) this.modify_name=""; return this.modify_name; } /** * @see 修改人 */ public void setModify_name(String modify_name) { this.modify_name=modify_name; } /** * @see 修改时间 */ public String getModify_time() { if(this.modify_time==null) this.modify_time=""; return this.modify_time; } /** * @see 修改时间 */ public void setModify_time(String modify_time) { this.modify_time=modify_time; } /** * @see 详细说明 */ public String getIntroduction() { if(this.introduction==null) this.introduction=""; return this.introduction; } /** * @see 详细说明 */ public void setIntroduction(String introduction) { this.introduction=introduction; } /** * @see 流程类别 */ public Workflow_categoryItem getWorkflow_categoryItem() { return this.workflow_categoryItem; } /** * @see 流程类别 */ public void setWorkflow_categoryItem(Workflow_categoryItem workflow_categoryItem) { this.workflow_categoryItem=workflow_categoryItem; } /** * @see 表单文件 */ public String getTemple_file() { if(this.temple_file==null) this.temple_file=""; return this.temple_file; } /** * @see 表单文件 */ public void setTemple_file(String temple_file) { this.temple_file=temple_file; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -