1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| using System;
| using System.Collections.Generic;
| using System.ComponentModel;
| using System.Linq;
| using System.Text;
| using System.Threading.Tasks;
|
| namespace WIDESEAWCS_Core.Enums
| {
| #region 操作类型
| public enum OperateTypeEnum
| {
| [Description("人工删除")]
| 人工删除 = 1,
| [Description("自动删除")]
| 自动删除 = 2,
| [Description("人工恢复")]
| 人工恢复 = 3,
| [Description("自动恢复")]
| 自动恢复 = 4,
| [Description("人工完成")]
| 人工完成 = 5,
| [Description("自动完成")]
| 自动完成 = 6,
| }
| #endregion
| }
|
|