12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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 UserVO {
- public UserVO() {
- //foreach (PropertyDescriptor property in TypeDescriptor.GetProperties(this)) {
- // if (property.DisplayName == "instCd") {
- // property.SetValue(this, "");
- // } else {
- // property.SetValue(this, "");
- // }
- //}
- }
- public string userId { get; set; }
- public string userName { get; set; }
- public string userDeptCode { get; set; }
- public string userDeptName { get; set; }
- public string deptEngAbbr { get; set; }
- public string jobKindCd { get; set; }
- public string jobKindNm { get; set; }
- public string instCd { get; set; }
- public string userTelNo { get; set; }
- public string ioFlag { get; set; }
- }
- }
|