using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayPlatformOpenidGetResponse. /// public class AlipayPlatformOpenidGetResponse : AopResponse { /// /// 结果码 /// [JsonProperty("code")] public string Code { get; set; } /// /// id字典,key为userId和老的openId,value为新的openId /// [JsonProperty("dict")] public string Dict { get; set; } /// /// 结果描述 /// [JsonProperty("msg")] public string Msg { get; set; } } }