12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace CLIP.eForm.Consent.Entity {
- [Serializable]
- public class PatListVO {
- public PatListVO() {
- foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
- if (property.DisplayName == "cretNo") {
- property.SetValue(this, 0);
- } else {
- property.SetValue(this, "");
- }
- }
- }
- //환자 등록번호
- public string pid { get; set; }
- //환자 입원일자
- public string inDd { get; set; }
- //환자 이력번호(당일 수진 이력)
- public int cretNo { get; set; }
- //환자 성명
- public string hngNm { get; set; }
- //진료과 코드 수술탭일 경우 집도과
- public string ordDeptCd { get; set; }
- //성별 나이
- public string sa { get; set; }
- //진료과 이름
- public string deptNm { get; set; }
- //전공의, 담당교수 이름
- public string doctorNm { get; set; }
- //병실
- public string roomCd { get; set; }
- //내원경로
- public string ordType { get; set; }
- //ER접수과
- public string erOrdDeptNm { get; set; }
- //ER진료의
- public string erMedispclNm { get; set; }
- //ER진료과
- public string erOrdDeptCd { get; set; }
- //외래진료 시간
- public string ordTm { get; set; }
- //수술방
- public string opRoomNm { get; set; }
- //수술 일자
- public string opDate { get; set; }
- // 수술예약번호
- public string opRsrvNo { get; set; }
- }
- }
|