You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
697 B
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayPlatformOpenidGetResponse.
/// </summary>
public class AlipayPlatformOpenidGetResponse : AopResponse
{
/// <summary>
/// 结果码
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// id字典key为userId和老的openIdvalue为新的openId
/// </summary>
[XmlElement("dict")]
public string Dict { get; set; }
/// <summary>
/// 结果描述
/// </summary>
[XmlElement("msg")]
public string Msg { get; set; }
}
}