27 lines
564 B
C#
27 lines
564 B
C#
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; }
|
|
}
|
|
}
|