StableVersion4.3/HL_FristAidPlatform_Help/Model/T_Service_IntegratedMachine...

38 lines
794 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
public class T_Service_IntegratedMachineSaveTimeModel
{
/// <summary>
/// 部门
/// </summary>
public string department { get; set; }
/// <summary>
/// 患者GUID
/// </summary>
public string patientGUID { get; set; }
/// <summary>
/// 时间编号
/// </summary>
public string index { get; set; }
/// <summary>
/// 时间编号
/// </summary>
public long number { get; set; }
/// <summary>
/// 时间
/// </summary>
public string TimeValue { get; set; }
}
}