1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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,
- }
- }
|