using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace CLIP.eForm.Consent.Dfh.Entity { [Serializable] public class PatListVO { public PatListVO() { foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) { if (property.DisplayName == "cretno" || property.DisplayName == "seqno" || property.DisplayName == "hd" ) { property.SetValue(this, 0); } else { property.SetValue(this, ""); } } } //환자 등록번호 public string pid { get; set; } //환자 입원일자 public string indd { get; set; } //환자 이력번호(당일 수진 이력) public int cretno { get; set; } //환자 이력번호(수진내 이력) public int seqno { get; set; } //병원 기관코드 public string instcd { get; set; } //환자 성명 public string hngnm { get; set; } //환자 초진 재진 구분 F:병원초진 D:과초진 R:재진 S:상병초진 4:응급실경유 5:입원경유 public string fsexamflag { get; set; } //진료과 코드 수술탭일 경우 집도과 public string orddeptcd { get; set; } //주치의 아이디 수술텝일경우 집도의 public string doctorid { get; set; } //재원일수 public int hd { get; set; } //성별 나이 public string sa { get; set; } //진료과 이름 public string deptnm { get; set; } //진료과 약어 public string deptengabbr { get; set; } //주치의 이름 public string doctornm { get; set; } //진단명 public string diagnm { get; set; } //퇴원상태 구분 public string dschnoti { get; set; } //병실 public string roomcd { get; set; } //컨설트 여부 public string cnst { get; set; } //내원경로 public string ordtype { get; set; } //보험유형 public string bostyle { get; set; } //환자 접수 상태 public string elbulbodstat { get; set; } //외래진료 시간 public string ordtm { get; set; } //진료의 아이디 public string orddrid { get; set; } //진료의 이름 public string orddrnm { get; set; } //진료일자 public string orddd { get; set; } //수술방 public string oproomnm { get; set; } //마취방법 public string anstreqflag { get; set; } //마취의 public string anstdrnm { get; set; } //ER접수과 public string erorddeptnm { get; set; } //ER진료의 public string ermedispclnm { get; set; } //수술확적일자 public string opcnfmdd { get; set; } //ER위치 public string badcd { get; set; } } }