数据范围枚举

This commit is contained in:
陈淳
2022-09-15 18:59:01 +08:00
parent 52b8bc8909
commit 0cc326836c
3 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
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,
DeptAndUnder = 3,
User = 4
}
}