ComplianceServer/oldcode/Core.Web/WebHelper/ToolBarConfig.cs

71 lines
1.8 KiB
C#

namespace Core.Web.WebHelper
{
public sealed class ToolBarConfig
{
/// <summary>
/// 非按钮
/// </summary>
public const int CONST_NotButton = 0;
/// <summary>
/// 新增
/// </summary>
public const int CONST_Add = 1;
/// <summary>
/// 编辑
/// </summary>
public const int CONST_Edit = 2;
/// <summary>
/// 详细
/// </summary>
public const int CONST_Details = 4;
/// <summary>
/// 删除
/// </summary>
public const int CONST_Delete = 8;
/// <summary>
/// 审核
/// </summary>
public const int CONST_Check = 16;
/// <summary>
/// 导出
/// </summary>
public const int CONST_Export = 32;
/// <summary>
/// 其他1
/// </summary>
public const int CONST_Other1 = 64;
/// <summary>
/// 其他2
/// </summary>
public const int CONST_Other2 = 128;
/// <summary>
/// 其他3
/// </summary>
public const int CONST_Other3 = 256;
/// <summary>
/// 其他4
/// </summary>
public const int CONST_Other4 = 512;
/// <summary>
/// 其他5
/// </summary>
public const int CONST_Other5 = 1024;
/// <summary>
/// 其他6
/// </summary>
public const int CONST_Other6 = 2048;
/// <summary>
/// 其他7
/// </summary>
public const int CONST_Other7 = 4096;
/// <summary>
/// 其他8
/// </summary>
public const int CONST_Other8 = 8192;
/// <summary>
/// 其他9
/// </summary>
public const int CONST_Other9 = 16384;
}
}