You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- //
-
-
-
-
-
-
-
-
- namespace SafeCampus.Web.Core;
-
- /// <summary>
- /// 日志常量
- /// </summary>
- public class LoggingConst
- {
- /// <summary>
- /// 操作名称
- /// </summary>
- public const string OPERATION = "Operation";
-
- /// <summary>
- /// 客户端信息
- /// </summary>
- public const string CLIENT = "Client";
-
- /// <summary>
- /// 请求地址
- /// </summary>
- public const string PATH = "Path";
-
- /// <summary>
- /// 请求方法:POST/GET
- /// </summary>
- public const string METHOD = "Method";
- }
|