24 lines
480 B
C#
24 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class MRSDTO
|
|
{
|
|
/// <summary>
|
|
/// 1 入院时 2 出院时
|
|
/// </summary>
|
|
public int Flag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 患者标识
|
|
/// </summary>
|
|
public string PatientGUID { get; set; }
|
|
|
|
public string TotalScore { get; set; }
|
|
}
|
|
}
|