Files

19 lines
466 B
C#
Raw Permalink Normal View History

2021-10-10 17:30:31 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Common.Models
{
/// <summary>
/// 写入分布式日志需要的字段
/// </summary>
public class LogModel
{
2023-01-06 11:12:47 +08:00
public string OriginalClassName { get; set; } = string.Empty;
public string OriginalMethodName { get; set; } = string.Empty;
public string? Remark { get; set; }
2021-10-10 17:30:31 +08:00
}
}