40 lines
947 B
C#
40 lines
947 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class ProposalDTO
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string PatientGUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 指导及建议
|
|
/// 1. 生活方式指导 2. 饮食指导 3 .运动指导 4. 劳物干预及进一步完西区学检查 分号拼接,且分号开头,分号结尾
|
|
/// </summary>
|
|
public string Proposal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 患者去向
|
|
/// </summary>
|
|
public string Destination { get; set; }
|
|
|
|
/// <summary>
|
|
/// 住院治疗
|
|
/// </summary>
|
|
public string IsHospitalized { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前筛查人
|
|
/// </summary>
|
|
public string ScreenName { get; set; }
|
|
}
|
|
}
|