StableVersion4.3/HL_FristAidPlatform_DTO/Service/PathogenyCensusDTO.cs

21 lines
421 B
C#
Raw Permalink Normal View History

2024-03-11 09:47:34 +08:00
namespace HL_FristAidPlatform_DTO
{
public class PathogenyCensusDTO
{
/// <summary>
/// 总数据
/// </summary>
public int Total { get; set; }
/// <summary>
/// 病因名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 日期
/// </summary>
public string RegisterDate { get; set; }
}
}