Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/LoginMobile/userLoginResult.cs

29 lines
709 B
C#
Raw 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;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.LoginMobile
{
public class userLoginResult
{
/// <summary>
/// Token
/// </summary>
public string token { get; set; }
/// <summary>
/// 用户信息
/// </summary>
public UserResult userInfo { get; set; }
/// <summary>
/// UserSig
/// </summary>
public string UserSig { get; set; }
/// <summary>
/// 用户类型1高中用户、2初中用户
/// </summary>
public int userType { get; set; }
}
}