添加项目文件。
This commit is contained in:
41
HT.Cloud.Code/Model/DbLogType.cs
Normal file
41
HT.Cloud.Code/Model/DbLogType.cs
Normal file
@ -0,0 +1,41 @@
|
||||
/*******************************************************************************
|
||||
* 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,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user