ImrData.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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 ImrData {
  21. public ImrData() {
  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. public string fileName { get; set; }
  31. public string inputDate { get; set; }
  32. public string userId { get; set; }
  33. ////사용자 아이디 : 107810
  34. //public string userId { get; set; }
  35. ////비밀번호 생략
  36. //public string userPasswd { get; set; }
  37. ////사용자 이름 : 오재은
  38. //public string userName { get; set; }
  39. ////사용자 부서 코드 : 5080000000
  40. //public string userDeptcd { get; set; }
  41. ////사용자 부서 이름 : 정보지원과
  42. //public string userDepthngnm { get; set; }
  43. //public string userSupportDeptCd { get; set; }
  44. //public string userSupportBaseCd { get; set; }
  45. //public string userTelNo { get; set; }
  46. //public string jobKindCd { get; set; }
  47. //public string jobKindNm { get; set; }
  48. //public string ioFlag { get; set; }
  49. //public string drKind { get; set; }
  50. }
  51. }