/// [설계자]
/// 클립소프트 연구소 박민지 (minjipark@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [수정 작성자]
/// 클립소프트 기술부 이인희
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-07-01 : 최초작성
/// ----------------------------------------------------------------------------------------
///
[Serializable]
public class ConsentVO
{
public ConsentVO()
{
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
{
if (property.DisplayName == "ConsentMstRid" || property.DisplayName == "FormRid" || property.DisplayName == "OrderNo" || property.DisplayName == "PrntCnt" || property.DisplayName == "Cretno")
{
property.SetValue(this, 0);
}
else
{
property.SetValue(this, "");
}
}
}
public int ConsentMstRid { get; set; }
public string ConsentName { get; set; }
public string ConsentState { get; set; }
public string ConsentStateDisp { get; set; }
public string HosType { get; set; }
public string PatientCode { get; set; }
public string VisitType { get; set; }
public string CosignDcId { get; set; }
public string CosignDcName { get; set; }
public string ClnDeptCd { get; set; }
public string ClnDeptNm { get; set; }
public string Doctor { get; set; }
public string Ward { get; set; }
public string RoomCd { get; set; }
public string OcrNumber { get; set; }
public string CreateUserId { get; set; }
public string CreateDateTime { get; set; }
public string CreateUserName { get; set; }
public string ClnDate { get; set; }
public int Cretno { get; set; }
public string FormGuid { get; set; }
public string FormCd { get; set; }
public int FormRid { get; set; }
public int PrntCnt { get; set; }
public int OrderNo { get; set; }
public string OrderCd { get; set; }
public string OrderNm { get; set; }
public string OcrTagYN { get; set; }
}
}