1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- 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 == "HosType") {
- property.SetValue(this, "");
- } else {
- property.SetValue(this, "");
- }
- }
- }
- //사용자 아이디 : 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; }
- //사용자 부서 약어(영문) : EY
- //public string UserGroupCode { get; set; }
- //public string UserGroupName { get; set; }
- //public string ServerTime { get; set; }
- //public string HosType { get; set; }
- //public string UserRid { get; set; }
- //public string UseExternalYn { 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; }
- }
- }
|