Files
WarehouseMgmt/api/VolPro.Core/Enums/ActionPermissionOptions.cs
2025-10-09 13:58:21 +08:00

20 lines
424 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
namespace VolPro.Core.Enums
{
public enum ActionPermissionOptions
{
//注意添加的枚举值一定要是前面的值倍数即x2
Add = 0,
Update = 2,
Search = 4,
Export = 8,
Delete = 12,
Audit = 24,
Upload = 48,//上传文件
Import = 96 //导入表数据Excel
}
}