workflow_stateitem.java
来自「java开发的办公系统 1.系统管理 (地区管理,部门管理,菜单管理,用户管理」· Java 代码 · 共 319 行
JAVA
319 行
package com.vere.manager.workflow.item; import java.io.*; public class Workflow_stateItem implements Serializable { private String id;// private String workflow_id;//流程编号 private String name;//流转状态名称 private String approval_type;//审批类型 private String appraisal_method;//评审方式 private String approval_user;//审批用户 private String approval_name;//审批人 private String approval_departmentid;//审批部门编号 private String approval_department;//审批部门 private String receive_user;//接收用户 private String receive_name;//接收人 private String state_type;//状态类型 private String x;//x坐标 private String width;//宽度 private String y;//y坐标 private String height;//高度 private String func_id;//功能编号 public Workflow_stateItem() { } /** * @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 getName() { if(this.name==null) this.name=""; return this.name; } /** * @see 流转状态名称 */ public void setName(String name) { this.name=name; } /** * @see 审批类型 */ public String getApproval_type() { if(this.approval_type==null) this.approval_type=""; return this.approval_type; } /** * @see 审批类型 */ public void setApproval_type(String approval_type) { this.approval_type=approval_type; } /** * @see 评审方式 */ public String getAppraisal_method() { if(this.appraisal_method==null) this.appraisal_method=""; return this.appraisal_method; } /** * @see 评审方式 */ public void setAppraisal_method(String appraisal_method) { this.appraisal_method=appraisal_method; } /** * @see 审批用户 */ public String getApproval_user() { if(this.approval_user==null) this.approval_user=""; return this.approval_user; } /** * @see 审批用户 */ public void setApproval_user(String approval_user) { this.approval_user=approval_user; } /** * @see 审批人 */ public String getApproval_name() { if(this.approval_name==null) this.approval_name=""; return this.approval_name; } /** * @see 审批人 */ public void setApproval_name(String approval_name) { this.approval_name=approval_name; } /** * @see 审批部门编号 */ public String getApproval_departmentid() { if(this.approval_departmentid==null) this.approval_departmentid=""; return this.approval_departmentid; } /** * @see 审批部门编号 */ public void setApproval_departmentid(String approval_departmentid) { this.approval_departmentid=approval_departmentid; } /** * @see 审批部门 */ public String getApproval_department() { if(this.approval_department==null) this.approval_department=""; return this.approval_department; } /** * @see 审批部门 */ public void setApproval_department(String approval_department) { this.approval_department=approval_department; } /** * @see 接收用户 */ public String getReceive_user() { if(this.receive_user==null) this.receive_user=""; return this.receive_user; } /** * @see 接收用户 */ public void setReceive_user(String receive_user) { this.receive_user=receive_user; } /** * @see 接收人 */ public String getReceive_name() { if(this.receive_name==null) this.receive_name=""; return this.receive_name; } /** * @see 接收人 */ public void setReceive_name(String receive_name) { this.receive_name=receive_name; } /** * @see 状态类型 */ public String getState_type() { if(this.state_type==null) this.state_type=""; return this.state_type; } /** * @see 状态类型 */ public void setState_type(String state_type) { this.state_type=state_type; } /** * @see x坐标 */ public String getX() { if(this.x==null) this.x=""; return this.x; } /** * @see x坐标 */ public void setX(String x) { this.x=x; } /** * @see 宽度 */ public String getWidth() { if(this.width==null) this.width=""; return this.width; } /** * @see 宽度 */ public void setWidth(String width) { this.width=width; } /** * @see y坐标 */ public String getY() { if(this.y==null) this.y=""; return this.y; } /** * @see y坐标 */ public void setY(String y) { this.y=y; } /** * @see 高度 */ public String getHeight() { if(this.height==null) this.height=""; return this.height; } /** * @see 高度 */ public void setHeight(String height) { this.height=height; } /** * @see 功能编号 */ public String getFunc_id() { if(this.func_id==null) this.func_id=""; return this.func_id; } /** * @see 功能编号 */ public void setFunc_id(String func_id) { this.func_id=func_id; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?