WFActivityInfo.cs
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:3k
源码类别:

.net编程

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace com.etong.Model
  5. {
  6.     public class WFActivityInfo
  7.     {
  8.         private int activityid;
  9.         private string unit;
  10.         private int unittype;
  11.         private string actdesc;
  12.         private string actname;
  13.         private int workflowid;
  14.         private int pageid;
  15.         private string decisiontitle;
  16.         private string decisionname;
  17.         private int startend;
  18.         private int blockflag;
  19.         private int shuntflag;
  20.         private int modeflag;
  21.         public WFActivityInfo()
  22.         {
  23.         }
  24.         public WFActivityInfo(int activityid,string unit,int unittype,string actdesc,string actname,int workflowid,int pageid,string decisiontitle,
  25.                                  string decisionname,int startend,int blockflag,int shuntflag,int modeflag)
  26.            {
  27.                this.activityid = activityid;
  28.                this.unit = unit;
  29.                this.unittype = unittype;
  30.                this.actdesc = actdesc;
  31.                this.actname = actname;
  32.                this.workflowid = workflowid;
  33.                this.pageid = pageid;
  34.                this.decisiontitle = decisiontitle;
  35.                this.decisionname = decisionname;
  36.                this.startend=startend;
  37.                this.blockflag = blockflag;
  38.                this.shuntflag = shuntflag;
  39.                this.modeflag = modeflag;
  40.           }
  41.         public int ActivityID
  42.           {
  43.               get { return this.activityid; }
  44.               set { this.activityid= value; }
  45.           }
  46.         public string Unit
  47.           {
  48.               get { return this.unit; }
  49.               set { this.unit = value; }
  50.           }
  51.         public int UnitType
  52.         {
  53.             get { return this.unittype; }
  54.             set { this.unittype = value; }
  55.         }
  56.         public string ActDesc
  57.         {
  58.             get { return this.actdesc; }
  59.             set { this.actdesc = value; }
  60.         }
  61.         public string ActName
  62.         {
  63.             get { return this.actname; }
  64.             set { this.actname = value; }
  65.         }
  66.         public int WorkFlowID
  67.         {
  68.             get { return this.workflowid; }
  69.             set { this.workflowid = value; }
  70.         }
  71.         public int PageID
  72.         {
  73.             get { return this.pageid; }
  74.             set { this.pageid = value; }
  75.         }
  76.         public string DecisionTitle
  77.         {
  78.             get { return this.decisiontitle; }
  79.             set { this.decisiontitle = value; }
  80.         }
  81.         public string DecisionName
  82.         {
  83.             get { return this.decisionname; }
  84.             set { this.decisionname = value; }
  85.         }
  86.         public int StartEnd
  87.         {
  88.             get { return this.startend; }
  89.             set { this.startend = value; }
  90.         }
  91.         public int BlockFlag
  92.         {
  93.             get { return this.blockflag; }
  94.             set { this.blockflag = value; }
  95.         }
  96.         public int ShuntFlag
  97.         {
  98.             get { return this.shuntflag; }
  99.             set { this.shuntflag = value; }
  100.         }
  101.         public int ModeFlag
  102.         {
  103.             get { return this.modeflag; }
  104.             set { this.modeflag = value; }
  105.         }
  106.  
  107.     }
  108. }