123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- using System;
- using System.ComponentModel;
- namespace CLIP.eForm.Consent.Dfh.Entity
- {
- /// <summary>
- /// 환자정보 엔터티
- /// </summary>
- /// <remarks>
- /// <p>[설계자]</p>
- /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
- /// <p>[원본 작성자]</p>
- /// <p> 클립소프트 기술부 이인희</p>
- /// <p>[수정 작성자]</p>
- /// <p></p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// <p>[HISTORY]</p>
- /// <p> 2016-06-27 : 최초작성</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// </remarks>
- [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; }
- }
- }
|