OriginateInstanceEventArgs.cs
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:1k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OThinker.H3.WorkSheet
  5. {
  6.     [System.Serializable]
  7.     public class OriginateInstanceEventArgs : EventArgs
  8.     {
  9.         public OriginateInstanceEventArgs(string InstanceId)
  10.         {
  11.             this._InstanceId = InstanceId;
  12.         }
  13.         private string _InstanceId;
  14.         /// <summary>
  15.         /// 流程Id
  16.         /// </summary>
  17.         public string InstanceId
  18.         {
  19.             get
  20.             {
  21.                 return this._InstanceId;
  22.             }
  23.         }
  24.         private Dictionary<string, object> _InstanceParamterTable = new Dictionary<string,object>();
  25.         /// <summary>
  26.         /// 流程发起的时候将带这个参数
  27.         /// </summary>
  28.         public Dictionary<string, object> InstanceParameterTable
  29.         {
  30.             get
  31.             {
  32.                 return this._InstanceParamterTable;
  33.             }
  34.         }
  35.     }
  36. }