33 lines
821 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 SqlSugar;
namespace Learun.Application.WeChat.WeChat
{
/// <summary>
/// 版 本 Learun-ADMS V6.1.6.0 敏捷开发框架
/// Copyright (c) 2013-2017 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2017-09-22 12:01
/// 描 述微信获取access_token返回类
/// </summary>
public class Access_TokenEntity
{
/// <summary>
/// 错误码
/// </summary>
public int errcode { get; set; }
/// <summary>
/// 错误内容
/// </summary>
public string errmsg { get; set; }
/// <summary>
/// token
/// </summary>
public string access_token { get; set; }
/// <summary>
/// 有效时长
/// </summary>
public int expires_in { get; set; }
}
}