43 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
namespace Learun.Util.Operat
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创建人:研发部
/// 日 期2017.03.08
/// 描 述:当前连接用户信息
/// </summary>
public class Operator
{
/// <summary>
/// 应用Id
/// </summary>
public string appId { get; set; }
/// <summary>
/// 用户账号
/// </summary>
public string account { get; set; }
/// <summary>
/// 登录时间
/// </summary>
public DateTime logTime { get; set; }
/// <summary>
/// 登录IP地址
/// </summary>
public string iPAddress { get; set; }
/// <summary>
/// 浏览器名称
/// </summary>
public string browser { get; set; }
/// <summary>
/// 登录者标识
/// </summary>
public string loginMark { get; set; }
/// <summary>
/// 票据信息
/// </summary>
public string token { get; set; }
}
}