/// [설계자]
/// 클립소프트 기술부 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 == "cretNo") {
property.SetValue(this, 0);
} else {
property.SetValue(this, "");
}
}
}
// 진료과 코드
public string ordDeptCd { get; set; }
// 환자 등록번호
public string pid { get; set; }
// 환자 수진내 이력번호
public int cretNo { get; set; }
// 환자 성별 및 나이
public string sa { get; set; }
// 환자 이름
public string patientName { get; set; }
// 환자 주민등록번호
public string juminNo { get; set; }
// 환자 집 주소
public string patientAddr { get; set; }
// 환자 휴대폰 번호
public string patientMobileNo { get; set; }
// 환자 집 전화번호
public string patientTelNo { get; set; }
// 환자 병동
public string ward { get; set; }
// 환자 병실
public string roomCd { get; set; }
// 진료 일자
public string inDd { get; set; }
// 퇴원 일자
public string dSchDd { get; set; }
// 내원 종류
public string ordType { get; set; }
// 부서 영문 약자 ex) IG = 소화기내과
public string deptEngNm { get; set; }
// 부서 한글명
public string deptNm { get; set; }
// 수술 과 코드
public string opDeptCd { get; set; }
// 수술 과명
public string opDeptNm { get; set; }
public string opDoctorNm { get; set; }
// 수술 의사 아이디
public string opDoctorId { get; set; }
// 진단 한글명
public string diagHngNm { get; set; }
public string mainDrId { get; set; }
public string mainDrNm { get; set; }
// 환자 주의사항
public string patientAlert { get; set; }
// 수술 확정일 및 수술 예정일자
public string opCnFmDd { get; set; }
// 수술명
public string opNm { get; set; }
public string opremFact { get; set; }
public string anstDrNm { get; set; }
public string anstDeptNm { get; set; }
public string opRsrvNo { get; set; }
public string patientBirthDd { get; set; }
}
}