using System; using System.ComponentModel; namespace CLIP.eForm.Consent.Dfh.Entity { /// /// 로그인 사용자 정보 엔터티 /// /// ///

[설계자]

///

클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)

///

[원본 작성자]

///

클립소프트 기술부 이인희

///

[수정 작성자]

///

///

----------------------------------------------------------------------------------------

///

[HISTORY]

///

2016-06-24 : 최초작성

///

----------------------------------------------------------------------------------------

///
[Serializable] public class UserVO { public UserVO() { foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) { if (property.DisplayName == "HosType") { property.SetValue(this, "111"); } else { property.SetValue(this, ""); } } } //사용자 아이디 : 107810 public string UserNo { get; set; } //비밀번호 생략 public string UserPassword { get; set; } //사용자 이름 : 오재은 public string UserName { get; set; } //사용자 부서 코드 : 5080000000 public string UserDeptCode { get; set; } //사용자 부서 이름 : 정보지원과 public string UserDeptName { get; set; } //사용자 부서 약어(영문) : EY public string UserGroupCode { get; set; } public string UserGroupName { get; set; } public string ServerTime { get; set; } public string HosType { get; set; } public string UserRid { get; set; } public string UseExternalYn { get; set; } } }