123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace CLIP.eForm.Consent.UI {
- /// <summary>
- /// 징구대상 환자 정보
- /// </summary>
- /// <remarks>
- /// <p>[설계자]</p>
- /// <p> 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)</p>
- /// <p>[원본 작성자]</p>
- /// <p> 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)</p>
- /// <p>[수정 작성자]</p>
- /// <p> 클립소프트 기술부 이인희</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// <p>[HISTORY]</p>
- /// <p> 2015-09-30 : 최초작성</p>
- /// <p> 2019-08 : 클래스 수정</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// </remarks>
- public class TargetPatient {
- public string pid { get; set; } //환자 등록번호
- public string name { get; set; } //환자 이름
- public string sa { get; set; } //환자 성별나이
- public string jumin { get; set; } //환자 주민번호
- public string instcd { get; set; } //환자 병원구분
- public string ordtype { get; set; } //환자 내원구분
- public string addr { get; set; } //환자 주소
- public string telno { get; set; } //환자 전화번호
- public string cretno { get; set; } //수진내 이력번호
- public string Dschdd { get; set; } //퇴원일자
- public string clnDate { get; set; } //내원일 또는 입원일
- public string clnDeptCode { get; set; } //진료과 코드
- public string clnDeptName { get; set; } //진료과 명
- public string clnDxCd { get; set; } //진단코드
- public string clnDxNm { get; set; } //진단 명
- public string mainDrId { get; set; } //주치의 ID
- public string mainDrNm { get; set; } //주치의 명
- public string ward { get; set; } //병동
- public string roomno { get; set; } //병실
- public int orderno { get; set; } //처방번호
- public string opDeptCd { get; set; } //수술과 코드
- public string opDeptNm { get; set; } //수술과 명
- public string opDrId { get; set; } //집도의 아이디
- public string opDrNm { get; set; } //집도의 명
- public string Insukind { get; set; } //보험유형
- public string OpCnfmDate { get; set; }
- public string PerfDrName { get; set; }
- public string PerfDrFlag { get; set; }
- public string PerfDrDept { get; set; }
- public string OpDiagName { get; set; }
- public string OpName { get; set; }
- public string OpremFact { get; set; }
- public string AnstDrName1 { get; set; }
- public string AnstDrFlag1 { get; set; }
- public string AnstDeptName1 { get; set; }
- public string AnstDrName2 { get; set; }
- public string AnstDrFlag2 { get; set; }
- public string AnstDeptName2 { get; set; }
- public string AnstDrName3 { get; set; }
- public string AnstDrFlag3 { get; set; }
- public string AnstDeptName3 { get; set; }
- public string OpRsrvNo { get; set; }
- public string ordtypeHngnm { get; set; }
- public string clnDeptEngNm { get; set; }
- public string birthDd { get; set; }
- // 생성자 (빈값 설정)
- public TargetPatient() {
- this.pid = "";
- this.name = "";
- this.sa = "";
- this.jumin = "";
- this.instcd = "";
- this.ordtype = "";
- this.addr = "";
- this.telno = "";
- cretno = "";
- Dschdd = "";
- clnDate = "";
- clnDeptCode = "";
- clnDeptName = "";
- clnDxCd = "";
- clnDxNm = "";
- this.mainDrId = "";
- this.mainDrNm = "";
- this.ward = "";
- this.roomno = "";
- orderno = -1;
- opDeptCd = "";
- opDeptNm = "";
- opDrId = "";
- opDrNm = "";
- Insukind = "";
- OpCnfmDate = "";
- PerfDrName = "";
- PerfDrFlag = "";
- PerfDrDept = "";
- OpDiagName = "";
- OpName = "";
- AnstDrName1 = "";
- AnstDrFlag1 = "";
- AnstDeptName1 = "";
- AnstDrName2 = "";
- AnstDrFlag2 = "";
- AnstDeptName2 = "";
- AnstDrName3 = "";
- AnstDrFlag3 = "";
- AnstDeptName3 = "";
- OpRsrvNo = "";
- ordtypeHngnm = "";
- clnDeptEngNm = "";
- birthDd = "";
- }
- }
- }
|