30 lines
697 B
C#
30 lines
697 B
C#
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和老的openId,value为新的openId
|
||
/// </summary>
|
||
[XmlElement("dict")]
|
||
public string Dict { get; set; }
|
||
|
||
/// <summary>
|
||
/// 结果描述
|
||
/// </summary>
|
||
[XmlElement("msg")]
|
||
public string Msg { get; set; }
|
||
}
|
||
}
|