You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Core/Enum/DataScopeType.cs

37 lines
678 B
C#

using System.ComponentModel;
namespace Myshipping.Core;
public enum DataScopeType
{
/// <summary>
/// 全部数据
/// </summary>
[Description("全部数据")]
ALL = 1,
/// <summary>
/// 本部门及以下数据
/// </summary>
[Description("本部门及以下数据")]
DEPT_WITH_CHILD = 2,
/// <summary>
/// 本部门数据
/// </summary>
[Description("本部门数据")]
DEPT = 3,
/// <summary>
/// 仅本人数据
/// </summary>
[Description("仅本人数据")]
SELF = 4,
/// <summary>
/// 自定义数据
/// </summary>
[Description("自定义数据")]
DEFINE = 5
}