123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- using System;
- using System.ComponentModel;
- namespace CLIP.eForm.Consent.Dfh.Entity
- {
- /// <summary>
- /// 로그인 사용자 정보 엔터티
- /// </summary>
- /// <remarks>
- /// <p>[설계자]</p>
- /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
- /// <p>[원본 작성자]</p>
- /// <p> 클립소프트 기술부 이인희</p>
- /// <p>[수정 작성자]</p>
- /// <p></p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// <p>[HISTORY]</p>
- /// <p> 2016-06-24 : 최초작성</p>
- /// <p>----------------------------------------------------------------------------------------</p>
- /// </remarks>
- [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; }
- }
- }
|