Files
douyin/model/dto/LogFileInfoDto.cs
T
2026-01-19 09:57:40 +08:00

41 lines
818 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.ComponentModel.DataAnnotations;
namespace dy.net.model.dto
{
public class LogFileInfoDto
{
/// <summary>
/// 日志类型(debug/error
/// </summary>
public string Type { get; set; }
/// <summary>
/// 日志日期(格式:20251203
/// </summary>
public string Date { get; set; }
/// <summary>
/// 完整文件名
/// </summary>
public string FileName { get; set; }
}
public class LogContentRequest
{
/// <summary>
/// 日志类型
/// </summary>
[Required]
public string Type { get; set; }
/// <summary>
/// 日志日期
/// </summary>
[Required]
public string Date { get; set; }
}
}