using System.ComponentModel;
namespace Common.Enum
{
///
/// 角色数据范围枚举
///
public enum DataScopeEnum
{
///
/// 全部数据
///
[Description("全部数据")]
All = 1,
///
/// 本部门及以下数据
///
[Description("本部门及以下数据")]
DeptChild = 2,
///
/// 本部门数据
///
[Description("本部门数据")]
Dept = 3,
///
/// 仅本人数据
///
[Description("仅本人数据")]
Self = 4,
///
/// 自定义数据
///
[Description("自定义数据")]
Define = 5
}
}