PatListVO.cs.svn-base 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace CLIP.eForm.Consent.Entity {
  7. [Serializable]
  8. public class PatListVO {
  9. public PatListVO() {
  10. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
  11. if (property.DisplayName == "cretNo") {
  12. property.SetValue(this, 0);
  13. } else {
  14. property.SetValue(this, "");
  15. }
  16. }
  17. }
  18. //환자 등록번호
  19. public string pid { get; set; }
  20. //환자 입원일자
  21. public string inDd { get; set; }
  22. //환자 이력번호(당일 수진 이력)
  23. public int cretNo { get; set; }
  24. //환자 성명
  25. public string hngNm { get; set; }
  26. //진료과 코드 수술탭일 경우 집도과
  27. public string ordDeptCd { get; set; }
  28. //성별 나이
  29. public string sa { get; set; }
  30. //진료과 이름
  31. public string deptNm { get; set; }
  32. //전공의, 담당교수 이름
  33. public string doctorNm { get; set; }
  34. //병실
  35. public string roomCd { get; set; }
  36. //내원경로
  37. public string ordType { get; set; }
  38. //ER접수과
  39. public string erOrdDeptNm { get; set; }
  40. //ER진료의
  41. public string erMedispclNm { get; set; }
  42. //ER진료과
  43. public string erOrdDeptCd { get; set; }
  44. //외래진료 시간
  45. public string ordTm { get; set; }
  46. //수술방
  47. public string opRoomNm { get; set; }
  48. //수술 일자
  49. public string opDate { get; set; }
  50. // 수술예약번호
  51. public string opRsrvNo { get; set; }
  52. }
  53. }