You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
498 B
26 lines
498 B
9 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace RoadFlow.Data.Model
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 调用流程事件时的参数实体
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
public struct WorkFlowCustomEventParams
|
||
|
{
|
||
|
|
||
|
public Guid FlowID { get; set; }
|
||
|
|
||
|
public Guid StepID { get; set; }
|
||
|
|
||
|
public Guid GroupID { get; set; }
|
||
|
|
||
|
public Guid TaskID { get; set; }
|
||
|
|
||
|
public string InstanceID { get; set; }
|
||
|
}
|
||
|
}
|