23 lines
625 B
C#
23 lines
625 B
C#
using System.ComponentModel;
|
|
using SQLite;
|
|
|
|
namespace MasstransferCommon.Model.Entity;
|
|
|
|
/// <summary>
|
|
/// 日志参数
|
|
/// </summary>
|
|
[Table("log_params")]
|
|
[Description("日志参数")]
|
|
public class LogParams : Entity
|
|
{
|
|
[Column("level"), Description("日志级别")] public string? Level { get; set; }
|
|
|
|
[Column("path"), Description("日志存放路径")]
|
|
public string? Path { get; set; }
|
|
|
|
[Column("upload_corn"), Description("日志上传时间")]
|
|
public string? UploadCorn { get; set; }
|
|
|
|
[Column("upload_levels"), Description("日志上传级别")]
|
|
public string? UploadLevels { get; set; }
|
|
} |