1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace WIDESEA_Core.WorkFlow
| {
| public enum AuditStatus
| {
| 待审核 = 0,
| 审核通过 = 1,
| 审核中 = 2,
| 审核未通过 = 3,
| 驳回 = 4
| }
|
| public enum AuditType
| {
| 用户审批 = 1,
| 角色审批 = 2,
| 部门审批 = 3
| }
| }
|
|