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