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