using LeaRun.Util; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Application.Code { /// /// 版 本 6.1 /// Copyright (c) 2013-2016 上海力软信息技术有限公司 /// 创建人:佘赐雄 /// 日 期:2015.11159 10:45 /// 描 述:系统信息 /// public class SystemInfo { /// /// 当前Tab页面模块Id /// public static string CurrentModuleId { get { return WebHelper.GetCookie("currentmoduleId"); } } /// /// 当前登录用户Id /// public static string CurrentUserId { get { return OperatorProvider.Provider.Current().UserId; } } } }