/// [설계자]
/// 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)
/// [원본 작성자]
/// 클립소프트 기술부 이인희
/// [수정 작성자]
///
/// ----------------------------------------------------------------------------------------
/// [HISTORY]
/// 2016-07-01 : 최초작성
/// ----------------------------------------------------------------------------------------
///
[Serializable]
public class ClnDateForDropdownVO
{
public ClnDateForDropdownVO()
{
foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
{
if (property.DisplayName == "CretNo")
{
property.SetValue(this, 0);
}
else
{
property.SetValue(this, "");
}
}
}
public string ClnDate { get; set; } //진료일 yyyyMMdd
public string ClnFormatDate { get; set; } //진료일 yyyy-MM-dd
public string VisitType { get; set; } //내원구분
public string VisitTypeName { get; set; } //내원구분명
public string ClnDeptCode { get; set; } //진료과
public string ClnDeptName { get; set; } //진료과명
public string DeptCd { get; set; } //진료과코드
public int CretNo { get; set; } //진료이력 sequence
public string orddrid { get; set; } //진료의
}
}