using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayZdataserviceUnidataQueryResponse. /// public class AlipayZdataserviceUnidataQueryResponse : AopResponse { /// /// 查询结果集,统一用string方式返回 /// [XmlElement("query_result")] public string QueryResult { get; set; } /// /// 查询是否成功具体描述 /// [XmlElement("result_code")] public string ResultCode { get; set; } /// /// 查询是否成功 /// [XmlElement("success")] public string Success { get; set; } } }