123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- using System;
- using System.ComponentModel;
- namespace CLIP.eForm.Consent.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 == "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; }
- }
- }
|