UserVO.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 == "instCd") {
  24. // property.SetValue(this, "");
  25. // } else {
  26. // property.SetValue(this, "");
  27. // }
  28. //}
  29. }
  30. public string userId { get; set; }
  31. public string userName { get; set; }
  32. public string userDeptCode { get; set; }
  33. public string userDeptName { get; set; }
  34. public string deptEngAbbr { get; set; }
  35. public string jobKindCd { get; set; }
  36. public string jobKindNm { get; set; }
  37. public string instCd { get; set; }
  38. public string userTelNo { get; set; }
  39. public string ioFlag { get; set; }
  40. }
  41. }