WFActivityInfo.cs
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:3k
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace com.etong.Model
- {
- public class WFActivityInfo
- {
- private int activityid;
- private string unit;
- private int unittype;
- private string actdesc;
- private string actname;
- private int workflowid;
- private int pageid;
- private string decisiontitle;
- private string decisionname;
- private int startend;
- private int blockflag;
- private int shuntflag;
- private int modeflag;
- public WFActivityInfo()
- {
- }
- public WFActivityInfo(int activityid,string unit,int unittype,string actdesc,string actname,int workflowid,int pageid,string decisiontitle,
- string decisionname,int startend,int blockflag,int shuntflag,int modeflag)
- {
- this.activityid = activityid;
- this.unit = unit;
- this.unittype = unittype;
- this.actdesc = actdesc;
- this.actname = actname;
- this.workflowid = workflowid;
- this.pageid = pageid;
- this.decisiontitle = decisiontitle;
- this.decisionname = decisionname;
- this.startend=startend;
- this.blockflag = blockflag;
- this.shuntflag = shuntflag;
- this.modeflag = modeflag;
- }
- public int ActivityID
- {
- get { return this.activityid; }
- set { this.activityid= value; }
- }
- public string Unit
- {
- get { return this.unit; }
- set { this.unit = value; }
- }
- public int UnitType
- {
- get { return this.unittype; }
- set { this.unittype = value; }
- }
- public string ActDesc
- {
- get { return this.actdesc; }
- set { this.actdesc = value; }
- }
- public string ActName
- {
- get { return this.actname; }
- set { this.actname = value; }
- }
- public int WorkFlowID
- {
- get { return this.workflowid; }
- set { this.workflowid = value; }
- }
- public int PageID
- {
- get { return this.pageid; }
- set { this.pageid = value; }
- }
- public string DecisionTitle
- {
- get { return this.decisiontitle; }
- set { this.decisiontitle = value; }
- }
- public string DecisionName
- {
- get { return this.decisionname; }
- set { this.decisionname = value; }
- }
- public int StartEnd
- {
- get { return this.startend; }
- set { this.startend = value; }
- }
- public int BlockFlag
- {
- get { return this.blockflag; }
- set { this.blockflag = value; }
- }
- public int ShuntFlag
- {
- get { return this.shuntflag; }
- set { this.shuntflag = value; }
- }
- public int ModeFlag
- {
- get { return this.modeflag; }
- set { this.modeflag = value; }
- }
-
- }
- }