27 lines
678 B
C#
27 lines
678 B
C#
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; }
|
||
}
|
||
}
|