Quanxue.Zhanghao.Daochu/LearningOfficer.OA.Common/Dtos/QRCode/QRCodeResult.cs

27 lines
678 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.

using LearningOfficer.OA.Common.Dtos.LoginMobile;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Dtos.QRCode
{
public class QRCodeResult
{
/// <summary>
/// 扫码状态0失败1成功2过期, 3已扫码
/// </summary>
public int CodeState { get; set; }
///// <summary>
///// 成功时返回的token
///// </summary>
//public string token { get; set; }
/// <summary>
/// 用户信息
/// </summary>
public userLoginResult userInfo { get; set; }
}
}