Files
HTCloud/HT.Cloud.Code/Model/DbLogType.cs
2023-03-03 16:07:50 +08:00

41 lines
752 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*******************************************************************************
* Copyright © 2020 HT.Cloud.Framework 版权所有
* Author: HT.Cloud
* Description: WaterCloud快速开发平台
* Website
*********************************************************************************/
using System.ComponentModel;
namespace HT.Cloud.Code
{
public enum DbLogType
{
[Description("其他")]
Other = 0,
[Description("登录")]
Login = 1,
[Description("退出")]
Exit = 2,
[Description("访问")]
Visit = 3,
[Description("新增")]
Create = 4,
[Description("删除")]
Delete = 5,
[Description("修改")]
Update = 6,
[Description("提交")]
Submit = 7,
[Description("异常")]
Exception = 8,
}
}