flowinfo.java

来自「dgbas公文管理核心java源码」· Java 代码 · 共 107 行

JAVA
107
字号
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 + =
减小字号Ctrl + -
显示快捷键?