Dispenser/DispenserCore/Model/Entity/LogParams.cs

23 lines
620 B
C#
Raw Normal View History

2024-08-16 07:20:09 +00:00
using System.ComponentModel;
using SQLite;
namespace DispenserCore.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; }
}