eventinfo.java

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

JAVA
137
字号
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 EventInfo
{
    private int FlowID = -1;
    private String FlowName = "";
    private int StateID = -1;
    private String StateName = "";
    private int EventID = -1;
    private String EventName = "";
    private String EventButton = "";
    private int EventType = -1;
    private int ErrEvent = -1;
    private String EventDesc = "";
    private int OutType = -1;
    private int OutID = -1;

    public void setFlowID(int FlowID)
    {
        this.FlowID = FlowID;
    }
    public int getFlowID()
    {
        return this.FlowID;
    }

    public void setStateID(int StateID)
    {
        this.StateID = StateID;
    }
    public int getStateID()
    {
        return this.StateID;
    }

    public void setEventID(int EventID)
    {
        this.EventID = EventID;
    }
    public int getEventID()
    {
        return this.EventID;
    }

    public void setEventType(int EventType)
    {
        this.EventType = EventType;
    }
    public int getEventType()
    {
        return this.EventType;
    }

    public void setErrEvent(int ErrEvent)
    {
        this.ErrEvent = ErrEvent;
    }
    public int getErrEvent()
    {
        return this.ErrEvent;
    }

    public void setOutType(int OutType)
    {
        this.OutType = OutType;
    }
    public int getOutType()
    {
        return this.OutType;
    }

    public void setOutID(int OutID)
    {
        this.OutID = OutID;
    }
    public int getOutID()
    {
        return this.OutID;
    }

    public void setEventName(String EventName)
    {
        this.EventName = EventName;
    }
    public String getEventName()
    {
        return this.EventName;
    }

    public void setFlowName(String FlowName)
    {
        this.FlowName = FlowName;
    }
    public String getFlowName()
    {
        return this.FlowName;
    }

    public void setStateName(String StateName)
    {
        this.StateName = StateName;
    }
    public String getStateName()
    {
        return this.StateName;
    }

    public void setEventButton(String EventButton)
    {
        this.EventButton = EventButton;
    }
    public String getEventButton()
    {
        return this.EventButton;
    }

    public void setEventDesc(String EventDesc)
    {
        this.EventDesc = EventDesc;
    }
    public String getEventDesc()
    {
        return this.EventDesc;
    }
    public static void main(String[] args)
    {
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?