StableVersion4.3/HL_FristAidPlatform_DTO/Service/UpdateApoplexyTimesDTO.cs

28 lines
559 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class UpdateApoplexyTimesDTO
{
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// 时间点
/// </summary>
public string TimeValue { get; set; }
/// <summary>
/// 时间点数值
/// </summary>
public int TimeNumber { get; set; }
}
}