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