StableVersion4.3/HL_FristAidPlatform_DTO/Service/MaternalDTO.cs

27 lines
564 B
C#
Raw Permalink Normal View History

2024-03-11 09:47:34 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class MaternalDTO : CaseDataDTO
{
/// <summary>
/// 已评总数
/// </summary>
public int GradedCount { get; set; }
/// <summary>
/// 未评总数
/// </summary>
public int UnGradedCount { get; set; }
/// <summary>
/// 转院总数
/// </summary>
public int TransferCount { get; set; }
}
}