StableVersion4.3/HL_FristAidPlatform_Help/Model/SaveMRSModel.cs

27 lines
532 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
/// <summary>
///
/// </summary>
public class SaveMRSModel
{
/// <summary>
/// 1 入院时 2 出院时
/// </summary>
public int Flag { get; set; }
/// <summary>
/// 患者标识
/// </summary>
public string PatientGUID { get; set; }
public string TotalScore { get; set; }
}
}