1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CLIP.eForm.Consent.Entity
- {
- [Serializable]
- public class PatInfoListVO
- {
- //환자 등록번호
- public string pid { get; set; }
- //환자 이름
- public string hngnm { get; set; }
- //환자 주민번호 앞자리
- public string rrgstno1 { get; set; }
- //환자 주민번호 뒷자리 ex) 1******
- public string rrgstno2 { get; set; }
- //환자 나이
- public string age { get; set; }
- //환자 휴대폰번호
- public string mpphontel { get; set; }
- //환자 주소
- public string addr { get; set; }
- //환자 최근내원일
- public string lastorddd { get; set; }
- //환자 최근내원과
- public string lastorddept { get; set; }
- //환자 최근보험유형
- public string lastinsukind { get; set; }
- }
- }
|