123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Enums
- {
-
-
-
- public enum OperationEnum : int
- {
-
-
-
- [Description("未操作")]
- NoOperation = 0,
-
-
-
- [Description("查看列表")]
- List = 1,
-
-
-
- [Description("查看详情")]
- Details = 2,
-
-
-
- [Description("添加")]
- Add = 3,
-
-
-
- [Description("编辑")]
- Edit = 4,
-
-
-
- [Description("删除")]
- Del = 5,
-
-
-
- [Description("审核")]
- Audit = 6,
-
-
-
- [Description("上传")]
- Upload = 7,
-
-
-
- [Description("下载")]
- Download = 8,
-
-
-
- [Description("批量指派")]
- BatchAssignment = 9,
-
-
-
- [Description("登录")]
- Login = 10,
- }
- }
|