StableVersion4.3/HL_FristAidPlatform_Help/Model/PatientTriageScoreModel.cs

35 lines
730 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help.Model
{
/// <summary>
/// 分诊评分
/// </summary>
public class PatientTriageScoreModel
{
/// <summary>
/// 评分人
/// </summary>
public string ScoreName { get; set; }
/// <summary>
/// 评分类型
/// </summary>
public string ScoreType { get; set; }
/// <summary>
/// 评分时间
/// </summary>
public string ScoreTime { get; set; }
/// <summary>
/// 评分
/// </summary>
public string Score { get; set; }
}
}