using System; using System.ComponentModel; namespace CLIP.eForm.Consent.Entity { /// /// 로그인 사용자 정보 엔터티 /// /// ///

[설계자]

///

클립소프트 기술부 4팀 이창훈 (chlee@clipsoft.co.kr)

///

[원본 작성자]

///

클립소프트 기술부 이인희

///

[수정 작성자]

///

///

----------------------------------------------------------------------------------------

///

[HISTORY]

///

2016-06-24 : 최초작성

///

----------------------------------------------------------------------------------------

///
[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; } } }