Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Common/Enum/DataScopeEnum.cs
2022-09-15 19:05:57 +08:00

18 lines
298 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Common.Enum
{
public enum DataScopeEnum
{
ALL = 0,
CUSTOM = 1,
DEPT = 2,
DEPT_FOLLOW = 3,
USER = 4
}
}