23 lines
622 B
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.

namespace Learun.Util.Operat
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创建人:研发部
/// 日 期2017.03.08
/// 描 述:当前连接用户信息返回数据
/// </summary>
public class OperatorResult
{
/// <summary>
/// 状态码-1未登录,1登录成功,0登录过期,2其他账号登录
/// </summary>
public int stateCode { get; set; }
/// <summary>
/// 登录者用户信息
/// </summary>
public UserInfo userInfo { get; set; }
}
}