You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
806 B
C#
47 lines
806 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SLH.SSDMS.Model.Enums
|
|
{
|
|
public enum LogType
|
|
{
|
|
/// <summary>
|
|
/// 查詢
|
|
/// </summary>
|
|
查询记录,
|
|
|
|
/// <summary>
|
|
/// 添加
|
|
/// </summary>
|
|
添加记录,
|
|
|
|
/// <summary>
|
|
/// 修改
|
|
/// </summary>
|
|
修改记录,
|
|
|
|
/// <summary>
|
|
/// 刪除
|
|
/// </summary>
|
|
刪除记录,
|
|
|
|
/// <summary>
|
|
/// 接收
|
|
/// </summary>
|
|
接收记录,
|
|
|
|
/// <summary>
|
|
/// 解析
|
|
/// </summary>
|
|
解析记录,
|
|
|
|
/// <summary>
|
|
/// 运行日志
|
|
/// </summary>
|
|
运行日志,
|
|
}
|
|
}
|