using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayCommerceTransportIntelligentizeDataSyncResponse. /// public class AlipayCommerceTransportIntelligentizeDataSyncResponse : AopResponse { /// /// 扩展信息,json格式,由双方约定取值 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 结果码,发生异常时非空 /// [XmlElement("result_code")] public string ResultCode { get; set; } /// /// 结果信息,发生异常时非空 /// [XmlElement("result_msg")] public string ResultMsg { get; set; } } }