namespace OpenAuth.App.Flow { /// /// 流程节点 /// public class FlowNode { public const string START = "start round mix"; public const string END = "end round"; public const string NODE = "node"; public const string FORK = "fork"; //会签开始节点 public const string JOIN = "join"; //会签结束节点 public string id { get; set; } public string name { get; set; } public string type { get; set; } /// /// 节点的附加数据项 /// /// The set information. public Setinfo setInfo { get; set; } } public class Setinfo { public Nodedesignatedata NodeDesignateData { get; set; } public string NodeCode { get; set; } public string NodeName { get; set; } } /// /// 节点执行人 /// public class Nodedesignatedata { public string[] users { get; set; } public string[] role { get; set; } public string[] org { get; set; } } }