123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.ComponentModel;
- namespace CLIP.eForm.Consent.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 ImrData {
- public ImrData() {
- foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
- if (property.DisplayName == "HosType") {
- property.SetValue(this, "");
- } else {
- //property.SetValue(this, "");
- }
- }
- }
- public string fileName { get; set; }
- public string inputDate { get; set; }
- public string userId { get; set; }
- ////사용자 아이디 : 107810
- //public string userId { get; set; }
- ////비밀번호 생략
- //public string userPasswd { get; set; }
- ////사용자 이름 : 오재은
- //public string userName { get; set; }
- ////사용자 부서 코드 : 5080000000
- //public string userDeptcd { get; set; }
- ////사용자 부서 이름 : 정보지원과
- //public string userDepthngnm { get; set; }
- //public string userSupportDeptCd { get; set; }
- //public string userSupportBaseCd { get; set; }
- //public string userTelNo { get; set; }
- //public string jobKindCd { get; set; }
- //public string jobKindNm { get; set; }
- //public string ioFlag { get; set; }
- //public string drKind { get; set; }
- }
- }
|