优化了打印 日志的功能

This commit is contained in:
2025-07-06 14:20:56 +08:00
parent 1ebe31a26c
commit 6655fb8fd4
4 changed files with 114 additions and 6 deletions

View File

@@ -60,4 +60,20 @@ public class DbNlog
/// </summary>
[SugarColumn(IsNullable = true)]
public string ThreadName { get; set; }
/// <summary>
/// 线程名称。
/// </summary>
[SugarColumn(IsNullable = true)]
public string CallerFilePath { get; set; }
/// <summary>
/// 线程名称。
/// </summary>
[SugarColumn(IsNullable = true)]
public int CallerLineNumber { get; set; }
/// <summary>
/// 线程名称。
/// </summary>
[SugarColumn(IsNullable = true)]
public string CallerMember { get; set; }
}