/// [설계자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 이인희
/// [수정 작성자]
///
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-06-27 : 최초작성
/// ----------------------------------------------------------------------------------------
///
[Serializable]
public class PatientVO
{
public PatientVO()
{
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
{
if (property.DisplayName == "IO_OrderNo")
{
property.SetValue(this, 0);
}
else
{
property.SetValue(this, "");
}
}
}
//환자 등록번호
public string IO_Pt_ID { get; set; }
//환자 성별 나이
public string IO_sex_age_y_m { get; set; }
//환자 이름
public string IO_Pt_Name { get; set; }
//환자 주민등록 번호
public string IO_JuminNo { get; set; }
//환자 병원구분
public string IO_HosType { get; set; }
//환자 수진내 이력번호
public string IO_CretNo { get; set; }
//입원환자 병동
public string IO_Ward { get; set; }
//입원환자 병실
public string IO_RoomNo { get; set; }
//환자 내원일 또는 입원일
public string IO_ADdate { get; set; }
//환자 퇴원일 외래인경우 진료일
public string IO_Dschdd { get; set; }
//환자 방문유형 (내원, 외래, 등)
public string IO_VisitType { get; set; }
//진료과 코드
public string IO_DeptCd { get; set; }
//진료과 명
public string IO_DeptNm { get; set; }
//진료과 명(한글)
public string IO_Dept2 { get; set; }
//수술과 코드
public string IO_OPdeptCd { get; set; }
//수술과 명
public string IO_OPdeptNm { get; set; }
//집도의 아이디
public string IO_OPdrId { get; set; }
//집도의 명
public string IO_OPdrNm { get; set; }
//진단코드
public string IO_DxCd { get; set; }
//진단명
public string IO_DxNm { get; set; }
//처방번호
public int IO_OrderNo { get; set; }
//출력일시
public string IO_PrintTime { get; set; }
//주치의 ID
public string IO_MaindrId { get; set; }
//주치의 명
public string IO_MaindrNm { get; set; }
//ocr코드
public string IO_OcrCd { get; set; }
//작성자 ID
public string IO_InputId { get; set; }
//작성자 이름
public string IO_InputNm { get; set; }
//작성자 서명
public string IO_SignImg { get; set; }
//고/저혈압
public string IO_bp { get; set; }
//당뇨병
public string IO_dm { get; set; }
//심장질환
public string IO_heart { get; set; }
//신장질환
public string IO_kidney { get; set; }
//호흡기질환
public string IO_respiration { get; set; }
//과거병력
public string IO_hx { get; set; }
//알레르기
public string IO_allergy { get; set; }
//복용약물
public string IO_drug { get; set; }
//흡연상태
public string IO_smoking { get; set; }
//특이체질
public string IO_idio { get; set; }
//마약사고
public string IO_nacrotics { get; set; }
//기도이상 유무
public string IO_airway { get; set; }
//출혈소인
public string IO_hemorrhage { get; set; }
//기타
public string IO_status_etc { get; set; }
//주소
public string IO_Zipcdaddr { get; set; }
//전화번호
public string IO_Tel { get; set; }
//보험유형
public string IO_Insukind { get; set; }
//응급 주치의
public string IO_ErdrNm { get; set; }
}
}