2024-10-07 09:51:55 +08:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
using DataCheck;
|
|
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.ApiServe.Dto.WcsDto.SystemController;
|
2024-10-07 09:51:55 +08:00
|
|
|
|
|
|
|
|
|
|
public class LogRequest
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// log类型
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("logType")]
|
|
|
|
|
|
[DataRules]
|
|
|
|
|
|
public string? LogType { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// log文件名
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[JsonPropertyName("logFileName")]
|
|
|
|
|
|
[DataRules]
|
|
|
|
|
|
public string? LogFileName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|