14 lines
230 B
C#
14 lines
230 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace VOL.Core.WorkFlow
|
|||
|
{
|
|||
|
public enum AuditBack
|
|||
|
{
|
|||
|
流程结束 = 0,
|
|||
|
返回上一节点 = 1,
|
|||
|
流程重新开始 = 2
|
|||
|
}
|
|||
|
}
|