UserVO.cs.svn-base 2.0 KB

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