using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayFundBatchUniTransferResponse. /// public class AlipayFundBatchUniTransferResponse : AopResponse { /// /// 支付宝内部的批次ID /// [XmlElement("batch_trans_id")] public string BatchTransId { get; set; } /// /// 商户的批次号 /// [XmlElement("out_batch_no")] public string OutBatchNo { get; set; } /// /// INIT:批次落单成功 /// [XmlElement("status")] public string Status { get; set; } } }