UserVO.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.ComponentModel;
  3. namespace CLIP.eForm.Consent.Dfh.Entity
  4. {
  5. /// <summary>
  6. /// 로그인 사용자 정보 엔터티
  7. /// </summary>
  8. /// <remarks>
  9. /// <p>[설계자]</p>
  10. /// <p> 클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)</p>
  11. /// <p>[원본 작성자]</p>
  12. /// <p> 클립소프트 기술부 이인희</p>
  13. /// <p>[수정 작성자]</p>
  14. /// <p></p>
  15. /// <p>----------------------------------------------------------------------------------------</p>
  16. /// <p>[HISTORY]</p>
  17. /// <p> 2016-06-24 : 최초작성</p>
  18. /// <p>----------------------------------------------------------------------------------------</p>
  19. /// </remarks>
  20. [Serializable]
  21. public class UserVO
  22. {
  23. public UserVO()
  24. {
  25. foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this))
  26. {
  27. if (property.DisplayName == "HosType")
  28. {
  29. property.SetValue(this, "111");
  30. }
  31. else
  32. {
  33. property.SetValue(this, "");
  34. }
  35. }
  36. }
  37. //사용자 아이디 : 107810
  38. public string UserNo { get; set; }
  39. //비밀번호 생략
  40. public string UserPassword { get; set; }
  41. //사용자 이름 : 오재은
  42. public string UserName { get; set; }
  43. //사용자 부서 코드 : 5080000000
  44. public string UserDeptCode { get; set; }
  45. //사용자 부서 이름 : 정보지원과
  46. public string UserDeptName { get; set; }
  47. //사용자 부서 약어(영문) : EY
  48. public string UserGroupCode { get; set; }
  49. public string UserGroupName { get; set; }
  50. public string ServerTime { get; set; }
  51. public string HosType { get; set; }
  52. public string UserRid { get; set; }
  53. public string UseExternalYn { get; set; }
  54. }
  55. }