You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ttxh-sc/VOL.Core/Enums/ActionPermissionOptions.cs

19 lines
328 B

using System;
using System.Collections.Generic;
using System.Text;
namespace VOL.Core.Enums
{
public enum ActionPermissionOptions
{
Add = 0,
Delete = 1,
Update = 2,
Search=3,
Export=4,
Audit,
Upload,//上传文件
Import //导入表数据Excel
}
}