Files

22 lines
400 B
C#
Raw Permalink Normal View History

2023-04-13 21:12:06 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Rbac.Domain.Shared.OperLog
2023-04-13 21:12:06 +08:00
{
public enum OperEnum
{
Insert = 1,
Update = 2,
Delete = 3,
Auth = 4,
Export = 5,
Import = 6,
ForcedOut = 7,
GenerateCode = 8,
ClearData = 9
}
}