using System; using System.ComponentModel; namespace CLIP.eForm.Consent.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, ""); } else { property.SetValue(this, ""); } } } //사용자 아이디 : 107810 public string userId { get; set; } //비밀번호 생략 public string userPasswd { get; set; } //사용자 이름 : 오재은 public string userName { get; set; } //사용자 부서 코드 : 5080000000 public string userDeptcd { get; set; } //사용자 부서 이름 : 정보지원과 public string userDepthngnm { get; set; } public string userSupportDeptCd { get; set; } public string userSupportBaseCd { 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; } public string userTelNo { get; set; } public string jobKindCd { get; set; } public string jobKindNm { get; set; } public string ioFlag { get; set; } public string drKind { get; set; } } }