StableVersion4.3/HL_FristAidPlatform_DTO/Service/T_Service_FollowUpDTO.cs

96 lines
2.2 KiB
C#

namespace HL_FristAidPlatform_DTO
{
//T_Service_FollowUp
public class T_Service_FollowUpDTO
{
/// <summary>
/// ID
/// </summary>
public long ID { get; set; }
/// <summary>
/// GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// PatientID
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// FollowUpDate
/// </summary>
public string FollowUpDate { get; set; }
/// <summary>
/// FollowUpType
/// </summary>
public string FollowUpType { get; set; }
/// <summary>
/// AdmittingDiagnosis
/// </summary>
public string AdmittingDiagnosis { get; set; }
/// <summary>
/// DischargeDiagnosis
/// </summary>
public string DischargeDiagnosis { get; set; }
/// <summary>
/// HospitalOutcome
/// </summary>
public string HospitalOutcome { get; set; }
/// <summary>
/// DrugRegimen
/// </summary>
public string DrugRegimen { get; set; }
/// <summary>
/// HealthPrescription
/// </summary>
public string HealthPrescription { get; set; }
/// <summary>
/// RehabilitationProgram
/// </summary>
public string RehabilitationProgram { get; set; }
/// <summary>
/// InspectionResult
/// </summary>
public string InspectionResult { get; set; }
/// <summary>
/// CheckResult
/// </summary>
public string CheckResult { get; set; }
/// <summary>
/// FollowUpResult
/// </summary>
public string FollowUpResult { get; set; }
/// <summary>
/// FollowUpDoctor
/// </summary>
public string FollowUpDoctor { get; set; }
/// <summary>
/// Delete_Flag
/// </summary>
public int DeleteFlag { get; set; }
/// <summary>
/// FollowUpStatus
/// </summary>
public string FollowUpStatus { get; set; }
}
}