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