12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- 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 instCd { get; set; }
- public string ordType { get; set; }
- // 환자 한글 이름
- public string hngNm { get; set; }
- // 진료과 코드
- public string ordDeptCd { get; set; }
- // 의사 아이다
- public string doctorId { get; set; }
- // 환자 성별/나이
- public string sa { get; set; }
- // 진료과 이름
- public string deptNm { get; set; }
- // 의사 이름
- public string doctorNm { get; set; }
- // 입원실 코드
- public string roomCd { get; set; }
- // 수술방 이름
- public string opRoomNm { get; set; }
- // 수술번호
- public string oprsRvNo { get; set; }
- }
- }
|