using System.Web.Mvc; using System.Collections.Generic; namespace SEIeSCM.Models.Dto.SysLogin { public class SysDto : CommonDto { /// /// 로그인사용자정보 /// public string Sy_UserGb { set; get; } public string Sy_CompanyCd { set; get; } public string Sy_UserId { set; get; } public string Sy_UserName { set; get; } public string Sy_DeptCode { set; get; } public string Sy_DeptName { set; get; } public string Sy_UserChk { set; get; } public string Sy_UserEis { set; get; } public string Sy_UserPwd { set; get; } public string Sy_SvCode { set; get; } public string Sy_StoreCode { set; get; } public string Sy_StoreType { set; get; } public string Sy_SvName { set; get; } public string Sy_Valid { set; get; } public string Sy_OLDPW { set; get; } public string Sy_NEWPW { set; get; } public string Sy_NEWPWCF { set; get; } } }