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