PatListVO.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 instCd { get; set; }
  26. public string ordType { get; set; }
  27. // 환자 한글 이름
  28. public string hngNm { get; set; }
  29. // 진료과 코드
  30. public string ordDeptCd { get; set; }
  31. // 의사 아이다
  32. public string doctorId { get; set; }
  33. // 환자 성별/나이
  34. public string sa { get; set; }
  35. // 진료과 이름
  36. public string deptNm { get; set; }
  37. // 의사 이름
  38. public string doctorNm { get; set; }
  39. // 입원실 코드
  40. public string roomCd { get; set; }
  41. // 수술방 이름
  42. public string opRoomNm { get; set; }
  43. // 수술번호
  44. public string oprsRvNo { get; set; }
  45. }
  46. }