using System; namespace SHJX.Service.Model.Global { public static class CurrentUser { /// /// 用户名 /// public static string UserName { get; set; } /// /// 登录时间 /// public static DateTime LoginTime { get; set; } } }