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