/// [설계자]
/// 클립소프트 연구소 홍지철 (jchong@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 이창훈 (chlee@clipsoft.co.kr)
/// [수정 작성자]
/// 클립소프트 기술부 이인희
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2015-09-30 : 최초작성
/// 2019-08 : 클래스 수정
/// ----------------------------------------------------------------------------------------
///
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 = "";
}
}
}