Laservall_manager_system/LM.Core/Enums/ActionPermissionOptions.cs

19 lines
336 B
C#
Raw Normal View History

2025-09-25 14:37:10 +08:00
using System;
using System.Collections.Generic;
using System.Text;
2025-10-09 16:26:44 +08:00
namespace LM.Core.Enums
2025-09-25 14:37:10 +08:00
{
public enum ActionPermissionOptions
{
Add = 0,
Delete = 1,
Update = 2,
Search=4,
Export=8,
Audit=16,
Upload=32,//上传文件
Import=64 //导入表数据Excel
}
}