📄 flowinfo.java
字号:
package com.jestdoc.flowmodel;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2002</p>
* <p>Company: wingroup</p>
* @author unascribed
* @version 1.0
*/
public class FlowInfo
{
private int FlowID = -1;
private int VersionID = -1;
private String FlowName = "";
private int TypeID = -1;
private String TypeName = "";
private int DeptID = -1;
private String DeptName = "";
private String FlowDesc = "";
private int FlowActive = -1;
public void setFlowID(int FlowID)
{
this.FlowID = FlowID;
}
public int getFlowID()
{
return this.FlowID;
}
public void setVersionID(int VersionID)
{
this.VersionID = VersionID;
}
public int getVersionID()
{
return this.VersionID;
}
public void setTypeID(int TypeID)
{
this.TypeID = TypeID;
}
public int getTypeID()
{
return this.TypeID;
}
public void setDeptID(int DeptID)
{
this.DeptID = DeptID;
}
public int getDeptID()
{
return this.DeptID;
}
public void setFlowActive(int FlowActive)
{
this.FlowActive = FlowActive;
}
public int getFlowActive()
{
return this.FlowActive;
}
public void setFlowName(String FlowName)
{
this.FlowName = FlowName;
}
public String getFlowName()
{
return this.FlowName;
}
public void setTypeName(String TypeName)
{
this.TypeName = TypeName;
}
public String getTypeName()
{
return this.TypeName;
}
public void setDeptName(String DeptName)
{
this.DeptName = DeptName;
}
public String getDeptName()
{
return this.DeptName;
}
public void setFlowDesc(String FlowDesc)
{
this.FlowDesc = FlowDesc;
}
public String getFlowDesc()
{
return this.FlowDesc;
}
public static void main(String[] args)
{
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -