41 lines
752 B
C#
41 lines
752 B
C#
/*******************************************************************************
|
||
* 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,
|
||
}
|
||
} |